From 7ab9924fa7643b5264bc9421fc1b8cf4428b39e9 Mon Sep 17 00:00:00 2001 From: "smx.pusha" <139338836+smxpusha@users.noreply.github.com> Date: Fri, 14 Aug 2026 17:27:35 +0200 Subject: [PATCH] ENH - refine setup and reset transitions --- .../src/components/PhoneSetupAssistant.vue | 245 +++++++++----- frontend/src/views/apps/SettingsApp.vue | 313 ++++++------------ 2 files changed, 268 insertions(+), 290 deletions(-) diff --git a/frontend/src/components/PhoneSetupAssistant.vue b/frontend/src/components/PhoneSetupAssistant.vue index 26d22b8..3a7bed3 100644 --- a/frontend/src/components/PhoneSetupAssistant.vue +++ b/frontend/src/components/PhoneSetupAssistant.vue @@ -156,6 +156,7 @@ async function submitAccount(): Promise { } function selectAccountMode(mode: 'login' | 'register'): void { + if (accountMode.value === mode) return accountMode.value = mode password.value = '' passwordConfirm.value = '' @@ -241,16 +242,16 @@ function finish(): void {