From 762a17d949c3f30365a3d8e4b0bd80a7b8daec0f Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Sat, 17 Sep 2022 15:42:34 +0200 Subject: [PATCH] fix: remove TLA --- tutorial/MiniRepl.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/MiniRepl.jsx b/tutorial/MiniRepl.jsx index 56387190..e46e35bc 100644 --- a/tutorial/MiniRepl.jsx +++ b/tutorial/MiniRepl.jsx @@ -12,7 +12,7 @@ export const defaultSynth = new Tone.PolySynth().chain(new Tone.Gain(0.5), Tone. }, }); -await fetch('https://strudel.tidalcycles.org/EmuSP12.json') +fetch('https://strudel.tidalcycles.org/EmuSP12.json') .then((res) => res.json()) .then((json) => samples(json, 'https://strudel.tidalcycles.org/EmuSP12/'));