From 3d6b6ae405dcf8b6646dc86320eb935d9b285128 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 16 Jan 2026 09:03:06 -0800 Subject: [PATCH] feat(mining-app): connect my team page from profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Link the "我的团队" menu item in profile page to the team tree page, completing the integration of the team tree feature. Co-Authored-By: Claude Opus 4.5 --- .../mining-app/lib/presentation/pages/profile/profile_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart b/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart index 73630a75..e16fc772 100644 --- a/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart +++ b/frontend/mining-app/lib/presentation/pages/profile/profile_page.dart @@ -472,7 +472,7 @@ class ProfilePage extends ConsumerWidget { _buildSettingItem( icon: Icons.people, label: '我的团队', - onTap: () {}, + onTap: () => context.push(Routes.myTeam), showDivider: false, ), ],