diff --git a/pkg/cmd/auth/login/web/web.go b/pkg/cmd/auth/login/web/web.go index e31e189..ce706cd 100644 --- a/pkg/cmd/auth/login/web/web.go +++ b/pkg/cmd/auth/login/web/web.go @@ -41,7 +41,7 @@ func CmdWeb(cmd *cobra.Command, args []string) error { Style(ui.Pantone). Title(" Awaiting Verification...").Action(func() { - if err := browser.OpenURL(fmt.Sprintf("%s/inquiry/new", environment.Env.WEB)); err != nil { + if err := browser.OpenURL(fmt.Sprintf("%s/inquiry", environment.Env.WEB)); err != nil { errorResponse = err return } diff --git a/pkg/environment/environment.go b/pkg/environment/environment.go index 57e9ee5..f5ed245 100644 --- a/pkg/environment/environment.go +++ b/pkg/environment/environment.go @@ -16,12 +16,6 @@ var Environments = []Environment{ API: "https://api.vulncheck.com", WEB: "https://vulncheck.com", }, - { - Name: "staging", - Values: []string{"staging", "stage"}, - API: "https://api.staging.vulncheck.com", - WEB: "https://staging.vulncheck.com", - }, { Name: "development", Values: []string{"development", "dev", "local"},