From f20ed32f5f708cfb00842d063350b5f63d80d527 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 27 Dec 2025 11:22:28 -0800 Subject: [PATCH] =?UTF-8?q?refactor(mobile-app):=20=E7=AE=80=E5=8C=96?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E8=B4=A6=E5=8F=B7=E7=A1=AE=E8=AE=A4=E5=AF=B9?= =?UTF-8?q?=E8=AF=9D=E6=A1=86=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../account/presentation/pages/account_switch_page.dart | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/frontend/mobile-app/lib/features/account/presentation/pages/account_switch_page.dart b/frontend/mobile-app/lib/features/account/presentation/pages/account_switch_page.dart index 41f6bed3..04ebb26a 100644 --- a/frontend/mobile-app/lib/features/account/presentation/pages/account_switch_page.dart +++ b/frontend/mobile-app/lib/features/account/presentation/pages/account_switch_page.dart @@ -126,11 +126,7 @@ class _AccountSwitchPageState extends ConsumerState { context: context, builder: (context) => AlertDialog( title: const Text('删除账号'), - content: Text( - '确定要删除账号 "${account.username}" 吗?\n\n' - '删除后该账号的所有本地数据将被清除,' - '如需恢复请使用助记词重新导入。', - ), + content: Text('确定要删除账号 "${account.username}" 吗?'), actions: [ TextButton( onPressed: () => Navigator.of(context).pop(false),