fix(mining-app): hardcode team bonus tiers display to 15

- Profile page: 团队上级 shows '15' instead of actual unlockedBonusTiers
- Contribution page: 已解锁上级 shows '15级' instead of actual value

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-14 20:28:02 -08:00
parent 0cccc0e2cd
commit b81ae634a6
2 changed files with 2 additions and 2 deletions

View File

@ -527,7 +527,7 @@ class ContributionPage extends ConsumerWidget {
const SizedBox(width: 16),
_buildTeamStatItem(
'已解锁上级',
contribution?.unlockedBonusTiers.toString(),
'15',
'',
isLoading,
),

View File

@ -265,7 +265,7 @@ class ProfilePage extends ConsumerWidget {
_buildDivider(),
_buildStatItem(
'团队上级',
stats?.unlockedBonusTiers.toString() ?? '0',
'15',
isLoading,
),
],