Skip to content

Commit

Permalink
update router base name (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka authored Nov 6, 2024
1 parent dc06766 commit 18f43dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const AppRouter = () => {
const hasAccount = useObservable(authStore.accountAddress)

return (
<Router basename={'/wallet-recovery-app'}>
<Router basename={'/'}>
<Routes>
<Route path="/" element={!hasAccount ? <Landing /> : <Navigate replace to="/wallet" />} />
<Route path="recovery" element={!hasAccount ? <Recovery /> : <Navigate replace to="/wallet" />} />
Expand Down

0 comments on commit 18f43dc

Please sign in to comment.