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