fix: imported chords not filtered

This commit is contained in:
2023-11-18 18:59:30 +01:00
parent 8e5692ca59
commit e38d952e1d

View File

@@ -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<Chord, "actions">) {