style: lint

This commit is contained in:
Davinci 2024-05-17 15:28:47 +02:00
parent eff8827a86
commit a1f16c33b2
2 changed files with 5 additions and 10 deletions

View File

@ -35,7 +35,9 @@ const App = () => {
const handleRootRedirect = () => { const handleRootRedirect = () => {
if (authState.loggedIn) return appPrivateRoutes.homePage if (authState.loggedIn) return appPrivateRoutes.homePage
const callbackPathEncoded = btoa(window.location.href.split(`${window.location.origin}/#`)[1]) const callbackPathEncoded = btoa(
window.location.href.split(`${window.location.origin}/#`)[1]
)
return `${appPublicRoutes.login}?callbackPath=${callbackPathEncoded}` return `${appPublicRoutes.login}?callbackPath=${callbackPathEncoded}`
} }
@ -72,14 +74,7 @@ const App = () => {
} }
})} })}
<Route <Route path="*" element={<Navigate to={handleRootRedirect()} />} />
path="*"
element={
<Navigate
to={handleRootRedirect()}
/>
}
/>
</Route> </Route>
</Routes> </Routes>
) )