From 4af93cae1ca54ad7c9bc7eb4b56c010f55c4c72d Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 17:53:55 +0000 Subject: feat: allow viewing/spectating games without login Make watch, ranking, game list, and tournament endpoints accessible without authentication. Unauthenticated users can browse games and spectate from the index page, while play/submit/preview still require login. https://claude.ai/code/session_019j9tNcnLsLz15e1qtbmeqe --- frontend/app/App.tsx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'frontend/app/App.tsx') diff --git a/frontend/app/App.tsx b/frontend/app/App.tsx index 3f1333a..be608e4 100644 --- a/frontend/app/App.tsx +++ b/frontend/app/App.tsx @@ -26,9 +26,7 @@ export default function App() { - - - + {(params) => ( @@ -52,17 +50,11 @@ export default function App() { )} - {(params) => ( - - - - )} + {(params) => } {(params) => ( - - - + )} -- cgit v1.3.1 From d39a86dd2cdb3f12bcb43713345fbba57a95ad58 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 00:29:23 +0000 Subject: fix: resolve biome formatting error in App.tsx tournament route https://claude.ai/code/session_019j9tNcnLsLz15e1qtbmeqe --- frontend/app/App.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'frontend/app/App.tsx') diff --git a/frontend/app/App.tsx b/frontend/app/App.tsx index be608e4..31adc28 100644 --- a/frontend/app/App.tsx +++ b/frontend/app/App.tsx @@ -53,9 +53,7 @@ export default function App() { {(params) => } - {(params) => ( - - )} + {(params) => }
-- cgit v1.3.1