From 672f2143cf4befc8fcc1242116121a5a649362d8 Mon Sep 17 00:00:00 2001 From: Steven Chui <13529406+schui@users.noreply.github.com> Date: Wed, 12 Mar 2025 22:30:06 -0700 Subject: [PATCH] Fix issue with Tone mode not using the correct frequency on page load --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 1fa868c..7680d22 100644 --- a/src/App.js +++ b/src/App.js @@ -52,7 +52,7 @@ class App extends Component { } }).toMaster(), osc: new Tone.Oscillator({ - "frequency": constants.DEFAULT_FREQ + "frequency": localFreq }).toMaster() } }