From ca216b6dbacfb16afc587d03bdf84fef796eff33 Mon Sep 17 00:00:00 2001 From: Herman Schaaf Date: Mon, 22 Apr 2024 11:54:08 +0100 Subject: [PATCH] fix: Fix link to billing page (#1643) The link is missing the `cloud.` subdomain --- premium/monitor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/premium/monitor.go b/premium/monitor.go index 7d22daf981..02573b4672 100644 --- a/premium/monitor.go +++ b/premium/monitor.go @@ -12,7 +12,7 @@ type ErrNoQuota struct { } func (e ErrNoQuota) Error() string { - return fmt.Sprintf("You have reached this plugin's usage limit for the month, please visit https://cloudquery.io/teams/%s/billing to upgrade your plan or increase the limit.", e.team) + return fmt.Sprintf("You have reached this plugin's usage limit for the month, please visit https://cloud.cloudquery.io/teams/%s/billing to upgrade your plan or increase the limit.", e.team) } const DefaultQuotaCheckInterval = 30 * time.Second