aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/App.js
diff options
context:
space:
mode:
authorWolfboy248 <121288977+Wolfboy248@users.noreply.github.com>2024-07-11 21:23:32 +0200
committerGitHub <noreply@github.com>2024-07-11 22:23:32 +0300
commit740c6314fba30600b940bb5316b4e7ac2a222323 (patch)
tree606f680162932f2624b5ab55c10ad4a7f29d4a7d /frontend/src/App.js
parentdocs: add missing nosla/sla history (#185) (diff)
downloadlphub-740c6314fba30600b940bb5316b4e7ac2a222323.tar.gz
lphub-740c6314fba30600b940bb5316b4e7ac2a222323.tar.bz2
lphub-740c6314fba30600b940bb5316b4e7ac2a222323.zip
feat: improve maplist url (#183)
Diffstat (limited to '')
-rw-r--r--frontend/src/App.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/App.js b/frontend/src/App.js
index b7bfeb3..5b68ae5 100644
--- a/frontend/src/App.js
+++ b/frontend/src/App.js
@@ -40,7 +40,7 @@ export default function App() {
40 <Route path="/about" element={<About/>}></Route> 40 <Route path="/about" element={<About/>}></Route>
41 <Route path="/maps/*" element={<Summary token={token} mod={mod}/>}></Route> 41 <Route path="/maps/*" element={<Summary token={token} mod={mod}/>}></Route>
42 <Route path="/games" element={<Games/>}></Route> 42 <Route path="/games" element={<Games/>}></Route>
43 <Route path="/games/game" element={<Maplist token={token} mod={mod} />}></Route> 43 <Route path="/games/*" element={<Maplist token={token} mod={mod} />}></Route>
44 <Route path="*" element={<Main text="404 Page not found"/>}></Route> 44 <Route path="*" element={<Main text="404 Page not found"/>}></Route>
45 </Routes> 45 </Routes>
46 </BrowserRouter> 46 </BrowserRouter>