Skip to content

Commit ab78c4a

Browse files
committed
Apply linter fixes
1 parent e469ac4 commit ab78c4a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/src/view/user/perf_stats_screen.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ class _Body extends ConsumerWidget {
388388
StatCardRow([
389389
StatCard(
390390
context.l10n.averageOpponent,
391-
value: data.avgOpponent == null ? '?' : data.avgOpponent!.round().toString(),
391+
value: data.avgOpponent == null
392+
? '?'
393+
: data.avgOpponent!.round().toString(),
392394
),
393395
StatCard(
394396
context.l10n.perfStatTimeSpentPlaying,

0 commit comments

Comments
 (0)