fix: cloudbeta -> support email address (#15950)
parent
8d80f712ea
commit
b9fb792f69
|
@ -1,9 +1,9 @@
|
|||
export const RATE_LIMIT_ERROR_STATUS = 429
|
||||
|
||||
export const RATE_LIMIT_ERROR_TEXT =
|
||||
'Oops. It looks like you have exceeded the query limits allowed as part of your plan. If you would like to increase your query limits, reach out to cloudbeta@influxdata.com.'
|
||||
'Oops. It looks like you have exceeded the query limits allowed as part of your plan. If you would like to increase your query limits, reach out to support@influxdata.com.'
|
||||
|
||||
export const ASSET_LIMIT_ERROR_STATUS = 403
|
||||
|
||||
export const ASSET_LIMIT_ERROR_TEXT =
|
||||
'Oops. It looks like you have exceeded the asset limits allowed as part of your plan. If you would like to increase your limits, reach out to cloudbeta@influxdata.com.'
|
||||
'Oops. It looks like you have exceeded the asset limits allowed as part of your plan. If you would like to increase your limits, reach out to support@influxdata.com.'
|
||||
|
|
|
@ -459,7 +459,7 @@ export const rateLimitReached = (secs?: number): Notification => {
|
|||
|
||||
export const resourceLimitReached = (resourceName: string): Notification => ({
|
||||
...defaultErrorNotification,
|
||||
message: `Oops. It looks like you have reached the maximum number of ${resourceName} allowed as part of your plan. If you would like to upgrade and remove this restriction, reach out to cloudbeta@influxdata.com.`,
|
||||
message: `Oops. It looks like you have reached the maximum number of ${resourceName} allowed as part of your plan. If you would like to upgrade and remove this restriction, reach out to support@influxdata.com.`,
|
||||
duration: FIVE_SECONDS,
|
||||
type: 'resourceLimitReached',
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue