diff --git a/cypress/e2e/cloud/createOrg.test.ts b/cypress/e2e/cloud/createOrg.test.ts
index 2c6df3a8fa..df9b0f2c64 100644
--- a/cypress/e2e/cloud/createOrg.test.ts
+++ b/cypress/e2e/cloud/createOrg.test.ts
@@ -227,10 +227,6 @@ describe('Free account', () => {
})
describe('PAYG account', () => {
- beforeEach(() => {
- cy.disableClickThroughAnnouncement()
- })
-
it('can create new orgs, if there are orgs left in the quota', () => {
setupTest({accountType: 'pay_as_you_go', canCreateOrgs: true})
diff --git a/cypress/e2e/cloud/org-list.test.ts b/cypress/e2e/cloud/org-list.test.ts
index 3a1cb43b81..02b70edf73 100644
--- a/cypress/e2e/cloud/org-list.test.ts
+++ b/cypress/e2e/cloud/org-list.test.ts
@@ -69,8 +69,8 @@ describe('Account / Organizations Tab', () => {
cy.getByTestID('question-mark-tooltip--tooltip--dialog').within(() => {
cy.get('a')
- .contains('support@influxdata.com')
- .should('have.attr', 'href', 'mailto:support@influxdata.com')
+ .contains('https://support.influxdata.com/s/login')
+ .should('have.attr', 'href', 'https://support.influxdata.com/s/login')
})
cy.getByTestID('pagination-item')
diff --git a/cypress/index.d.ts b/cypress/index.d.ts
index 5489fb1db5..8af8388ac4 100644
--- a/cypress/index.d.ts
+++ b/cypress/index.d.ts
@@ -69,7 +69,6 @@ import {
selectScriptFieldOrTag,
scriptsLoginWithFlags,
createScript,
- disableClickThroughAnnouncement,
} from './support/commands'
declare global {
@@ -146,7 +145,6 @@ declare global {
selectScriptFieldOrTag: typeof selectScriptFieldOrTag
scriptsLoginWithFlags: typeof scriptsLoginWithFlags
createScript: typeof createScript
- disableClickThroughAnnouncement: typeof disableClickThroughAnnouncement
}
}
}
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts
index 689d8d727b..7886f3fdef 100644
--- a/cypress/support/commands.ts
+++ b/cypress/support/commands.ts
@@ -1540,17 +1540,6 @@ export const createTaskFromEmpty = (
cy.getByTestID('task-form-offset-input').type(offset)
}
-export const disableClickThroughAnnouncement = () => {
- const announcementState = {
- pricingClickThroughAnnouncement: 'dismissed',
- }
-
- window.localStorage.setItem(
- 'clickThroughAnnouncement',
- JSON.stringify(announcementState)
- )
-}
-
/* eslint-disable */
// notification endpoints
Cypress.Commands.add('createEndpoint', createEndpoint)
@@ -1561,12 +1550,6 @@ Cypress.Commands.add('createCheck', createCheck)
// alert group
Cypress.Commands.add('createAlertGroup', createAlertGroup)
-// click through announcements
-Cypress.Commands.add(
- 'disableClickThroughAnnouncement',
- disableClickThroughAnnouncement
-)
-
// assertions
Cypress.Commands.add('fluxEqual', fluxEqual)
diff --git a/src/billing/components/PayAsYouGo/PayAsYouGo.tsx b/src/billing/components/PayAsYouGo/PayAsYouGo.tsx
index 8ae0ba0d0e..78e3219637 100644
--- a/src/billing/components/PayAsYouGo/PayAsYouGo.tsx
+++ b/src/billing/components/PayAsYouGo/PayAsYouGo.tsx
@@ -1,6 +1,5 @@
// Libraries
import React, {FC} from 'react'
-import {useSelector} from 'react-redux'
// Components
import {
@@ -19,15 +18,8 @@ import CancellationPanel from 'src/billing/components/PayAsYouGo/CancellationPan
import NotificationPanel from 'src/billing/components/PayAsYouGo/NotificationPanel'
import InvoiceLoadingWrapper from 'src/billing/components/AssetLoading/InvoiceWrapper'
import BillingInfoWrapper from 'src/billing/components/AssetLoading/BillingInfoWrapper'
-import {PricingAlert} from 'src/billing/components/PayAsYouGo/PricingAlert'
-
-// Utils
-import {selectCurrentIdentity} from 'src/identity/selectors'
const BillingPayAsYouGo: FC = () => {
- const {account} = useSelector(selectCurrentIdentity)
- const isDirectSignup = account.billingProvider === 'zuora'
-
return (