This commit is contained in:
Nikita 2025-10-24 20:55:56 +03:00
parent 91ebdd5ea6
commit 8f9967c76d
3 changed files with 8 additions and 10 deletions

View file

@ -219,13 +219,13 @@ export function useReplContext() {
multiChannelOrbits,
downloadName,
).finally(async () => {
const { latestCode, maxPolyphony, audioDeviceName, multiChannelOrbits } = settingsMap.get()
const { latestCode, maxPolyphony, audioDeviceName, multiChannelOrbits } = settingsMap.get();
await initAudio({
latestCode,
maxPolyphony,
audioDeviceName,
multiChannelOrbits
})
multiChannelOrbits,
});
editorRef.current.repl.scheduler.stop();
});
};