diff --git a/ui/src/pages/index.tsx b/ui/src/pages/index.tsx index d32348cfb..2c63b9709 100644 --- a/ui/src/pages/index.tsx +++ b/ui/src/pages/index.tsx @@ -1,4 +1,4 @@ -import { Suspense } from 'react'; +import { StrictMode, Suspense } from 'react'; import { Helmet, HelmetProvider } from 'react-helmet-async'; import { useTranslation } from 'react-i18next'; import PulseLoader from 'react-spinners/PulseLoader'; @@ -16,44 +16,46 @@ const Index = () => { const { t, i18n } = useTranslation(); return ( - -
- - - JORE4 Testiversio - - - - - - } - > - - - - - - -
-

{t('version', { version: process.env.NEXT_PUBLIC_GIT_HASH })}

-
+ + +
+ + + JORE4 Testiversio + + + + + + } + > + + + + + + +
+

{t('version', { version: process.env.NEXT_PUBLIC_GIT_HASH })}

+
- {enableCypressCoordinateHelper && } -
-
+ {enableCypressCoordinateHelper && } +
+
+ ); };