From 2a0cd0f5cf2d5961f01875ddfa4e2a0bb90aa08c Mon Sep 17 00:00:00 2001 From: DeVaris Brown <57653432+devarismeroxa@users.noreply.github.com> Date: Mon, 12 Apr 2021 23:35:05 -0700 Subject: [PATCH] Update billing URL Updated the billing URL to point to the right location --- cmd/open_billing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/open_billing.go b/cmd/open_billing.go index 3f8d148f0..67044c1bf 100644 --- a/cmd/open_billing.go +++ b/cmd/open_billing.go @@ -34,7 +34,7 @@ func getBillingURL() string { if os.Getenv("ENV") == "staging" { platformURL = DashboardStagingURL } - return fmt.Sprintf("%s/account/billing", platformURL) + return fmt.Sprintf("%s/settings/billing", platformURL) } // OpenBillingCmd represents the `meroxa open billing` command