fix: prevent presets losing params

This commit is contained in:
Carlos Valente
2026-02-20 20:48:49 +01:00
committed by Carlos Valente
parent 6268e327b9
commit 5be504ce8f
4 changed files with 47 additions and 13 deletions
@@ -28,9 +28,9 @@ type CuesheetUrlPreset = {
enabled: boolean;
alias: string;
search: string;
options: {
read: string;
write: string;
options?: {
read?: string;
write?: string;
};
};