summaryrefslogtreecommitdiff
path: root/web/source/settings/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/source/settings/index.tsx')
-rw-r--r--web/source/settings/index.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/web/source/settings/index.tsx b/web/source/settings/index.tsx
index 977a94150..25e3d1f3c 100644
--- a/web/source/settings/index.tsx
+++ b/web/source/settings/index.tsx
@@ -59,11 +59,10 @@ export function App({ account }: AppProps) {
<ModerationRouter />
<AdminRouter />
{/*
- Redirect to first part of UserRouter if
- just the bare settings page is open, so
- user isn't greeted with a blank page.
- */}
- <Route><Redirect to="/user/profile" /></Route>
+ Ensure user ends up somewhere
+ if they just open /settings.
+ */}
+ <Route path="/"><Redirect to="/user" /></Route>
</ErrorBoundary>
</Router>
</section>