Skip to content

Commit dc6b71d

Browse files
committed
fix default route
1 parent 9036ec2 commit dc6b71d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/AppRoutes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ export const AppRoutes = () => {
1414
<BrowserRouter>
1515
<Routes>
1616
<Route element={<AppLayout />}>
17-
<Route path="/" element={<App />} />
1817
<Route path="/settings" element={<SettingsLayout />}>
1918
<Route path="bookmarks" element={<BookmarkSettings />} />
2019
<Route path="topics" element={<TopicSettings />} />
2120
<Route path="sources" element={<SourceSettings />} />
2221
<Route path="general" element={<GeneralSettings />} />
2322
</Route>
23+
<Route path="*" index element={<App />} />
2424
</Route>
2525
</Routes>
2626
</BrowserRouter>

0 commit comments

Comments
 (0)