From b9fb792f695969e33e7f8ff25820db4102aab378 Mon Sep 17 00:00:00 2001 From: lukevmorris Date: Mon, 2 Dec 2019 11:04:07 -0800 Subject: [PATCH] fix: cloudbeta -> support email address (#15950) --- ui/src/cloud/constants/index.ts | 4 ++-- ui/src/shared/copy/notifications.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/cloud/constants/index.ts b/ui/src/cloud/constants/index.ts index 7391505543..647419919a 100644 --- a/ui/src/cloud/constants/index.ts +++ b/ui/src/cloud/constants/index.ts @@ -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.' diff --git a/ui/src/shared/copy/notifications.ts b/ui/src/shared/copy/notifications.ts index d881cb5aed..a9d5917127 100644 --- a/ui/src/shared/copy/notifications.ts +++ b/ui/src/shared/copy/notifications.ts @@ -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', })