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 3d67515 commit 8fd7b61Copy full SHA for 8fd7b61
frontend/src/app/AppRouter.tsx
@@ -1,4 +1,5 @@
1
import { Suspense, useEffect } from 'react'
2
+import { Helmet } from 'react-helmet-async'
3
import { Route, Routes } from 'react-router-dom'
4
import { Box } from '@chakra-ui/react'
5
import { useGrowthBook } from '@growthbook/growthbook-react'
@@ -165,9 +166,14 @@ export const AppRouter = (): JSX.Element => {
165
166
<Route
167
path={EDIT_SUBMISSION_PAGE_SUBROUTE}
168
element={
- <ParamIdValidator
169
- element={<PublicElement element={<PublicFormPage />} />}
170
- />
+ <>
+ <Helmet>
171
+ <meta name="robots" content="noindex,nofollow" />
172
+ </Helmet>
173
+ <ParamIdValidator
174
+ element={<PublicElement element={<PublicFormPage />} />}
175
+ />
176
+ </>
177
}
178
/>
179
0 commit comments