diff --git a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart index ae6ffb40..ab0f07dc 100644 --- a/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart +++ b/frontend/mobile-app/lib/features/profile/presentation/pages/profile_page.dart @@ -1437,7 +1437,7 @@ class _ProfilePageState extends ConsumerState { child: Row( crossAxisAlignment: CrossAxisAlignment.start, children: [ - // 左列:推荐人序列号、所属社区、上线社区、下级社区 + // 左列:推荐人序列号、所属社区、上级社区、下级社区 Expanded( child: Column( crossAxisAlignment: CrossAxisAlignment.start, @@ -1446,7 +1446,7 @@ class _ProfilePageState extends ConsumerState { const SizedBox(height: 12), _buildInfoItem('所属社区', _community), const SizedBox(height: 12), - _buildInfoItem('上线社区', _parentCommunity), + _buildInfoItem('上级社区', _parentCommunity), const SizedBox(height: 12), _buildInfoItem('下级社区', _childCommunity), ],