Skip to content

Commit

Permalink
fix: adjusted name route
Browse files Browse the repository at this point in the history
  • Loading branch information
NatanBrito committed Aug 5, 2024
1 parent a376ce7 commit d34e1c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ export default function Router() {
return (
<BrowserRouter>
<Routes>
<Route path={`/`} element={<Navigate to={`/increva-se`} />} />
<Route path={`/increva-se`} element={<LeadsPage />} />
<Route path={`/`} element={<Navigate to={`/inscreva-se`} />} />
<Route path={`/inscreva-se`} element={<LeadsPage />} />
<Route path={`/informacoes`} element={<InformationPage />} />
</Routes>
</BrowserRouter>
Expand Down

0 comments on commit d34e1c9

Please sign in to comment.