From e38d952e1da8e2535f83fc888a04f268e70f7020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thea=20Sch=C3=B6bl?= Date: Sat, 18 Nov 2023 18:59:30 +0100 Subject: [PATCH] fix: imported chords not filtered --- src/lib/serial/device.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/serial/device.ts b/src/lib/serial/device.ts index dfecb520..d227a046 100644 --- a/src/lib/serial/device.ts +++ b/src/lib/serial/device.ts @@ -207,7 +207,7 @@ export class CharaDevice { stringifyChordActions(chord.actions), stringifyPhrase(chord.phrase), ) - if (status !== "0") throw new Error(`Failed with status ${status}`) + if (status !== "0") console.error(`Failed with status ${status}`) } async deleteChord(chord: Pick) {