Skip to content

Commit

Permalink
fix: Fix link to billing page (#1643)
Browse files Browse the repository at this point in the history
The link is missing the `cloud.` subdomain
  • Loading branch information
hermanschaaf authored Apr 22, 2024
1 parent 83f5124 commit ca216b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion premium/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

1 comment on commit ca216b6

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⏱️ Benchmark results

  • Glob-8 ns/op: 91.32

Please sign in to comment.