Skip to content

Commit

Permalink
Change base url
Browse files Browse the repository at this point in the history
  • Loading branch information
basshamut committed Sep 4, 2024
1 parent 0052f22 commit b1b7921
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function InnerApp() {
if (!sessionUser) {
navigate('/dojo/login')
}
}, SESSION_DURATION) // Verifica cada 1 minuto
}, SESSION_DURATION) // Verifica cada 1 minuto
return () => clearInterval(interval)
}, [])

Expand All @@ -40,10 +40,11 @@ function InnerApp() {
)

}

export default function App() {
return (
<Router>
<InnerApp />
<InnerApp/>
</Router>
)
}
Expand Down

0 comments on commit b1b7921

Please sign in to comment.