Skip to content

Commit 6d65f66

Browse files
style: fix deno fmt in queue.js
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 024c3c0 commit 6d65f66

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

app/frontend/js/stores/queue.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,9 @@ export function createQueueStore(Alpine) {
261261
console.error('[queue] Failed to persist insert:', error);
262262
}
263263
} finally {
264-
setTimeout(() => { this._updating = false; }, 50);
264+
setTimeout(() => {
265+
this._updating = false;
266+
}, 50);
265267
}
266268
},
267269

@@ -509,7 +511,9 @@ export function createQueueStore(Alpine) {
509511
try {
510512
await this._doSkipNext();
511513
} finally {
512-
setTimeout(() => { this._updating = false; }, 50);
514+
setTimeout(() => {
515+
this._updating = false;
516+
}, 50);
513517
}
514518
},
515519

@@ -528,7 +532,9 @@ export function createQueueStore(Alpine) {
528532
try {
529533
await this.playPrevious();
530534
} finally {
531-
setTimeout(() => { this._updating = false; }, 50);
535+
setTimeout(() => {
536+
this._updating = false;
537+
}, 50);
532538
}
533539
},
534540

@@ -579,7 +585,9 @@ export function createQueueStore(Alpine) {
579585
// Sync queue order to backend
580586
await this._syncQueueToBackend();
581587
} finally {
582-
setTimeout(() => { this._updating = false; }, 50);
588+
setTimeout(() => {
589+
this._updating = false;
590+
}, 50);
583591
}
584592
},
585593

0 commit comments

Comments
 (0)