commit f4c7660f63cdd304277daa487c079411ad5e37d6 parent 563ef444b7bbe1157000b870faecd71dd43b1f9f Author: minerva-jupiter <ryouturn@gmail.com> Date: Fri, 24 Oct 2025 22:07:46 +0900 refactor(audio): drop webkitAudioContext fallback Diffstat:
| M | app/components/useAudioSequencer.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/components/useAudioSequencer.ts b/app/components/useAudioSequencer.ts @@ -18,7 +18,7 @@ const useAudioSequencer = (currentAudioUrl: string | null) => { // AudioContextの初期化 useEffect(() => { if (typeof globalThis !== 'undefined' && !contextRef.current) { - contextRef.current = new (globalThis.AudioContext || (globalThis as any).webkitAudioContext)(); + contextRef.current = new (globalThis.AudioContext)(); } }, []);