diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-04 21:37:22 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-04 21:37:22 +0900 |
| commit | 5062cb9460915624e3f7b808c8f814ba9c31db75 (patch) | |
| tree | c6fc829aaf17092ea6c5ad2b5b0f8b73f1088a23 /frontend/app/routes | |
| parent | a966efb99f9dee4850fcb1240e9d4472631a99b2 (diff) | |
| download | iosdc-japan-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.tar.gz iosdc-japan-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.tar.zst iosdc-japan-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.zip | |
rm audio feature
Diffstat (limited to 'frontend/app/routes')
| -rw-r--r-- | frontend/app/routes/golf.$gameId.watch.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/app/routes/golf.$gameId.watch.tsx b/frontend/app/routes/golf.$gameId.watch.tsx index f04f6b0..cdfc908 100644 --- a/frontend/app/routes/golf.$gameId.watch.tsx +++ b/frontend/app/routes/golf.$gameId.watch.tsx @@ -3,7 +3,7 @@ import { ClientLoaderFunctionArgs, useLoaderData } from "@remix-run/react"; import { useHydrateAtoms } from "jotai/utils"; import { apiGetGame, apiGetToken } from "../.server/api/client"; import { ensureUserLoggedIn } from "../.server/auth"; -import GolfWatchAppWithAudioPlayRequest from "../components/GolfWatchAppWithAudioPlayRequest.client"; +import GolfWatchApp from "../components/GolfWatchApp.client"; import GolfWatchAppConnecting from "../components/GolfWatchApps/GolfWatchAppConnecting"; import { codeAAtom, @@ -183,5 +183,5 @@ export default function GolfWatch() { [submitResultBAtom, playerStateB.submitResult], ]); - return <GolfWatchAppWithAudioPlayRequest game={game} sockToken={sockToken} />; + return <GolfWatchApp game={game} sockToken={sockToken} />; } |
