aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/routes/golf.$gameId.watch.tsx
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-03-04 21:37:22 +0900
committernsfisis <nsfisis@gmail.com>2025-03-04 21:37:22 +0900
commit5062cb9460915624e3f7b808c8f814ba9c31db75 (patch)
treec6fc829aaf17092ea6c5ad2b5b0f8b73f1088a23 /frontend/app/routes/golf.$gameId.watch.tsx
parenta966efb99f9dee4850fcb1240e9d4472631a99b2 (diff)
downloadphperkaigi-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.tar.gz
phperkaigi-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.tar.zst
phperkaigi-2025-albatross-5062cb9460915624e3f7b808c8f814ba9c31db75.zip
rm audio feature
Diffstat (limited to 'frontend/app/routes/golf.$gameId.watch.tsx')
-rw-r--r--frontend/app/routes/golf.$gameId.watch.tsx4
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} />;
}