fix(settings/user/message): wrong quit condition

This commit is contained in:
2026-01-30 23:33:59 +01:00
parent 151c2ac2f4
commit 07423fcd47

View File

@@ -20,7 +20,7 @@ const handleCancel = () => {
text: $t("settings.user.personalMessage.quitConfirmation"), text: $t("settings.user.personalMessage.quitConfirmation"),
onConfirm: () => {}, onConfirm: () => {},
onClosed: (choice) => { onClosed: (choice) => {
if (choice === "cancel") store.closeSubMenu(); if (choice === "confirm") store.closeSubMenu();
}, },
onCancel: () => { onCancel: () => {
state.value = "alive"; state.value = "alive";