From 9f45543d1a85242cf0fa2039b5fc5f71ff50f01b Mon Sep 17 00:00:00 2001 From: Mike Bell Date: Wed, 29 Apr 2026 12:09:18 +0300 Subject: [PATCH] style: fix audio oscillator connection formatting --- frontend/src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 8d256c8..7368520 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -47,7 +47,7 @@ // Play silent sound to fully unlock audio const oscillator = ctx.createOscillator() const gainNode = ctx.createGain() - oscillator.connect(gainNode) + oscillator.connect(gainNode) gainNode.connect(ctx.destination) gainNode.gain.value = 0 // Silent oscillator.start()