We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 671cf2c commit 493d34cCopy full SHA for 493d34c
cypress/e2e/shared/deepLinks.test.ts renamed to cypress/e2e/cloud/deepLinks.test.ts
src/shared/components/NotFound.tsx
@@ -27,6 +27,9 @@ import LogoWithCubo from 'src/checkout/LogoWithCubo'
27
import GetInfluxButton from 'src/shared/components/GetInfluxButton'
28
import {Organization} from 'src/types'
29
30
+// Constants
31
+import {CLOUD} from 'src/shared/constants'
32
+
33
const NotFoundNew: FC = () => (
34
<AppWrapper type="funnel" className="page-not-found" testID="not-found">
35
<FunnelPage enableGraphic={true} className="page-not-found-funnel">
@@ -148,7 +151,9 @@ const NotFound: FC = () => {
148
151
}, [history, location.pathname])
149
152
150
153
useEffect(() => {
- handleDeepLink()
154
+ if (CLOUD) {
155
+ handleDeepLink()
156
+ }
157
}, [handleDeepLink])
158
159
if (isFetchingOrg) {
0 commit comments