From 66c895ee3c0ba69fe5c77e2061ca2eb77f9c9b85 Mon Sep 17 00:00:00 2001 From: Felix Roos Date: Thu, 31 Aug 2023 11:52:49 +0200 Subject: [PATCH] fix: bad import --- packages/superdough/synth.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/superdough/synth.mjs b/packages/superdough/synth.mjs index 80909f0b..9756ced0 100644 --- a/packages/superdough/synth.mjs +++ b/packages/superdough/synth.mjs @@ -1,6 +1,6 @@ import { midiToFreq, noteToMidi } from './util.mjs'; import { registerSound, getAudioContext } from './superdough.mjs'; -import { getOscillator, gainNode, getEnvelope, getExpEnvelope } from './helpers.mjs'; +import { gainNode, getEnvelope, getExpEnvelope } from './helpers.mjs'; const mod = (freq, range = 1, type = 'sine') => { const ctx = getAudioContext();