From dd16a1cbf4d0405088c6cd011d67edc47d6e656a Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sun, 17 Mar 2024 04:48:25 +0100 Subject: [PATCH] hotfix: disable sync, it somehow breaks playback in the built version (pnpm build && pnpm preview) --- website/src/repl/Repl.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/repl/Repl.jsx b/website/src/repl/Repl.jsx index f43669f6..675a1066 100644 --- a/website/src/repl/Repl.jsx +++ b/website/src/repl/Repl.jsx @@ -72,7 +72,7 @@ export function Repl({ embedded = false }) { }); }; const editor = new StrudelMirror({ - sync: true, + sync: false, defaultOutput: webaudioOutput, getTime: () => getAudioContext().currentTime, transpiler,