fix routing issue

This commit is contained in:
Proddy
2023-03-03 12:41:48 +01:00
parent 8389e06aae
commit dd0489596e

View File

@@ -64,7 +64,7 @@ const AuthenticatedRouting: FC = () => {
}
/>
<Route path="/system/*" element={<System />} />
<Route path="/*" element={<Navigate to={AuthenticationApi.getDefaultRoute} />} />
<Route path="/*" element={<Navigate to="/" />} />
</Routes>
</Layout>
);