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),