aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/App.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-03-06 02:16:59 +0900
committernsfisis <nsfisis@gmail.com>2026-03-06 02:16:59 +0900
commit27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa (patch)
tree2f8adbbad7af59af35ec428e029863eb0941c397 /frontend/app/App.tsx
parent1fae954b09a49d93a1361788e859065bea43f0c0 (diff)
downloadphperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.tar.gz
phperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.tar.zst
phperkaigi-2026-albatross-27f509ccf4fbfeaa1bc2580ae2251461dc44ebfa.zip
feat(frontend): remove standalone submissions page
Submission history is now shown inline on the play screen, making the dedicated /golf/:gameId/submissions page redundant.
Diffstat (limited to 'frontend/app/App.tsx')
-rw-r--r--frontend/app/App.tsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/frontend/app/App.tsx b/frontend/app/App.tsx
index 31adc28..762dab6 100644
--- a/frontend/app/App.tsx
+++ b/frontend/app/App.tsx
@@ -8,7 +8,6 @@ import GolfProblemPreviewPage from "./pages/GolfProblemPreviewPage";
import GolfWatchPage from "./pages/GolfWatchPage";
import IndexPage from "./pages/IndexPage";
import LoginPage from "./pages/LoginPage";
-import SubmissionsPage from "./pages/SubmissionsPage";
import TournamentPage from "./pages/TournamentPage";
export default function App() {
@@ -42,13 +41,6 @@ export default function App() {
</ProtectedRoute>
)}
</Route>
- <Route path="/golf/:gameId/submissions">
- {(params) => (
- <ProtectedRoute>
- <SubmissionsPage gameId={params.gameId} />
- </ProtectedRoute>
- )}
- </Route>
<Route path="/golf/:gameId/watch">
{(params) => <GolfWatchPage gameId={params.gameId} />}
</Route>