From 641d0649aeb7fb0a8105c9319d5bf79d426732fd Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Thu, 9 Jul 2026 22:44:07 +0900 Subject: [PATCH] =?UTF-8?q?fix(settings):=20=EB=8D=B0=EC=9D=B4=ED=84=B0=20?= =?UTF-8?q?=EC=B4=88=EA=B8=B0=ED=99=94=20=EB=AA=A8=EB=8B=AC=20=EB=8B=AB?= =?UTF-8?q?=EC=9D=80=20=ED=9B=84=20confirm=20=ED=91=9C=EC=8B=9C=20?= =?UTF-8?q?=E2=80=94=20=ED=8C=9D=EC=97=85=20=EA=B2=B9=EC=B9=A8=C2=B7?= =?UTF-8?q?=ED=81=B4=EB=A6=AD=20=EB=A7=89=ED=9E=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- src/views/settings/SettingsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/settings/SettingsView.vue b/src/views/settings/SettingsView.vue index a6ef23a..1b53b85 100644 --- a/src/views/settings/SettingsView.vue +++ b/src/views/settings/SettingsView.vue @@ -196,12 +196,12 @@ async function doResetWithExport() { } async function doResetOnly() { + resetModalOpen.value = false const ok = await dialog.confirm( '엑셀 백업 없이 모든 데이터를 삭제합니다. 삭제된 데이터는 복구할 수 없습니다. 계속하시겠습니까?', { title: '데이터 삭제 확인', okText: '삭제', danger: true }, ) if (!ok) return - resetModalOpen.value = false resetting.value = true try { await accountApi.deleteAllData()