fix(mining-app): 已解锁上层数 = unlockedBonusTiers × 5
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
353299fd75
commit
98c898769f
|
|
@ -588,7 +588,7 @@ class ContributionPage extends ConsumerWidget {
|
||||||
_buildTeamStatItem(
|
_buildTeamStatItem(
|
||||||
context,
|
context,
|
||||||
'已解锁上',
|
'已解锁上',
|
||||||
contribution?.unlockedBonusTiers.toString(),
|
contribution != null ? (contribution.unlockedBonusTiers * 5).toString() : null,
|
||||||
'',
|
'',
|
||||||
isLoading,
|
isLoading,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue