diff options
author | Lena <lena.becker-3@mni.thm.de> | 2021-03-02 20:15:39 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-15 16:35:14 +0100 |
commit | 46d38aa53fa925a2335fdf6c3b0b6f47d05dce94 (patch) | |
tree | 907fcdf81ebdb5d424d0c51512fce6810fb7c5d2 /webui/src/App.tsx | |
parent | ec8a9b20696da25bf1781dd190e7ec6a8fbf5687 (diff) | |
download | git-bug-46d38aa53fa925a2335fdf6c3b0b6f47d05dce94.tar.gz |
Route instead of Redirect from empty bug to 404 after a hint from GM #10
Diffstat (limited to 'webui/src/App.tsx')
-rw-r--r-- | webui/src/App.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/webui/src/App.tsx b/webui/src/App.tsx index e0580b1d..4c81913c 100644 --- a/webui/src/App.tsx +++ b/webui/src/App.tsx @@ -13,7 +13,6 @@ export default function App() { <Switch> <Route path="/" exact component={ListPage} /> <Route path="/new" exact component={NewBugPage} /> - <Route path="/404bug" exact component={NotFoundPage} /> <Route path="/bug/:id" exact component={BugPage} /> <Route component={NotFoundPage} /> </Switch> |