From 32972b45dbc19276ecf01bcf81e3479d667ebd8f Mon Sep 17 00:00:00 2001 From: 17hz <0x149527@gmail.com> Date: Tue, 2 Sep 2025 18:57:24 +0800 Subject: [PATCH] fix: remove unnecessary modal visibility toggle on error in name save (#25001) --- web/app/account/(commonLayout)/account-page/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/web/app/account/(commonLayout)/account-page/index.tsx b/web/app/account/(commonLayout)/account-page/index.tsx index 47b8f045d2..2cddc01876 100644 --- a/web/app/account/(commonLayout)/account-page/index.tsx +++ b/web/app/account/(commonLayout)/account-page/index.tsx @@ -69,7 +69,6 @@ export default function AccountPage() { } catch (e) { notify({ type: 'error', message: (e as Error).message }) - setEditNameModalVisible(false) setEditing(false) } }