feat: use factory default meta

feat: clear chords button
resolves #64
This commit is contained in:
2025-02-14 14:52:07 +01:00
parent 9d5b0e01d2
commit ac16cfd3bf
12 changed files with 173 additions and 87 deletions

View File

@@ -63,11 +63,13 @@ export const setting: Action<
}
changes.update((changes) => {
changes.push({
type: ChangeType.Setting,
id: id,
setting: value,
});
changes.push([
{
type: ChangeType.Setting,
id: id,
setting: value,
},
]);
return changes;
});
}