Skip to content

Commit

Permalink
fix(App): Corrige redirección a inicio (incluye trailing slash)
Browse files Browse the repository at this point in the history
  • Loading branch information
lupomontero authored and mfdebian committed Mar 2, 2023
1 parent 7b1f26e commit 46e5c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const App = () => {
<Routes>
<Route
path="/"
element={<Navigate to={`/${defaultLang}`} />}
element={<Navigate to={`/${defaultLang}/`} />}
/>
<Route
path="/:lang/*"
Expand Down

0 comments on commit 46e5c8e

Please sign in to comment.