aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/states
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/states
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/states')
-rw-r--r--frontend/app/states/watch.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/frontend/app/states/watch.ts b/frontend/app/states/watch.ts
index 5f5c4db..cb719eb 100644
--- a/frontend/app/states/watch.ts
+++ b/frontend/app/states/watch.ts
@@ -1,5 +1,4 @@
import { atom } from "jotai";
-import { AudioController } from "../.client/audio/AudioController";
import type { components } from "../.server/api/schema";
import type { SubmitResult } from "../types/SubmitResult";
@@ -251,5 +250,3 @@ export const handleWsSubmitResultMessageAtom = atom(
callback(player_id, newResult, score);
},
);
-
-export const audioControllerAtom = atom<AudioController | null>(null);