From 80f2ac61ac97de8c8aee58610121badaaba2c41c Mon Sep 17 00:00:00 2001 From: denshooter Date: Sat, 10 Jan 2026 16:55:01 +0100 Subject: [PATCH] Fix type error in KernelPanic404: update currentMusic type to match return type --- app/components/KernelPanic404.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/KernelPanic404.tsx b/app/components/KernelPanic404.tsx index b861552..ed8e81e 100644 --- a/app/components/KernelPanic404.tsx +++ b/app/components/KernelPanic404.tsx @@ -28,7 +28,7 @@ export default function KernelPanic404() { let audioCtx: AudioContext | null = null; let systemFrozen = false; - let currentMusic: AudioBufferSourceNode | null = null; + let currentMusic: { stop: () => void } | null = null; let hawkinsActive = false; let fsocietyActive = false;