From d8cf1b5cb77539b666b79d4dfd2c670f3540e4a7 Mon Sep 17 00:00:00 2001 From: asyouplz Date: Thu, 19 Mar 2026 12:34:39 +0900 Subject: [PATCH] style: format files for code quality check --- src/__tests__/notifications/NotificationManager.test.ts | 4 +++- src/ui/components/DragDropZone.ts | 4 +++- src/ui/dashboard/StatisticsDashboard.ts | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/__tests__/notifications/NotificationManager.test.ts b/src/__tests__/notifications/NotificationManager.test.ts index b305e3a..361d4d7 100644 --- a/src/__tests__/notifications/NotificationManager.test.ts +++ b/src/__tests__/notifications/NotificationManager.test.ts @@ -130,7 +130,9 @@ describe('NotificationManager', () => { // DOM에서 확인 버튼 찾기 setTimeout(() => { - const confirmBtn = document.querySelector('.sn-modal__action--primary') as HTMLElement; + const confirmBtn = document.querySelector( + '.sn-modal__action--primary' + ) as HTMLElement; confirmBtn?.click(); }, 10); diff --git a/src/ui/components/DragDropZone.ts b/src/ui/components/DragDropZone.ts index ff17fa3..c8b1646 100644 --- a/src/ui/components/DragDropZone.ts +++ b/src/ui/components/DragDropZone.ts @@ -324,7 +324,9 @@ export class DragDropZone { private showMessage(message: string, type: 'success' | 'error') { if (!this.dropZone) return; - const messageEl = this.dropZone.createDiv(`sn-drop-zone-message sn-drop-zone-message--${type}`); + const messageEl = this.dropZone.createDiv( + `sn-drop-zone-message sn-drop-zone-message--${type}` + ); messageEl.setText(message); setTimeout(() => { diff --git a/src/ui/dashboard/StatisticsDashboard.ts b/src/ui/dashboard/StatisticsDashboard.ts index f77e86c..796be6b 100644 --- a/src/ui/dashboard/StatisticsDashboard.ts +++ b/src/ui/dashboard/StatisticsDashboard.ts @@ -457,7 +457,9 @@ export class StatisticsDashboard { }; Object.entries(updates).forEach(([id, value]) => { - const card = this.element?.querySelector(`[data-stat-id="${id}"] .sn-stats-card__value`); + const card = this.element?.querySelector( + `[data-stat-id="${id}"] .sn-stats-card__value` + ); if (card) { card.textContent = value; }