diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index c9d23c3b..f524befe 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -6,6 +6,7 @@ import { QueryClientProvider } from '@tanstack/react-query' import { useTranslation } from 'react-i18next' import { useLang } from 'hoofd' import { Switch, Route } from 'wouter' +import { I18nProvider } from 'react-aria-components' import { Layout } from './layout/Layout' import { NotFoundScreen } from './components/NotFoundScreen' import { routes } from './routes' @@ -23,15 +24,17 @@ function App() { return ( - - - {Object.entries(routes).map(([, route], i) => ( - - ))} - - - - + + + + {Object.entries(routes).map(([, route], i) => ( + + ))} + + + + + )