Skip to content

Commit

Permalink
fix: imported chords not filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
Theaninova committed Nov 18, 2023
1 parent 8e5692c commit e38d952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/serial/device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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">) {
Expand Down

0 comments on commit e38d952

Please sign in to comment.