Skip to content

Commit

Permalink
Wasn't showing total correctly. Fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
handstandsam committed Dec 2, 2024
1 parent 8d70ce4 commit d5297c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ fun AllStatsComposable(
statMetadata.dataType.name,
statMetadata.category
).apply {
statTotalsMap?.get(statMetadata.key)?.let { count ->
add(count.toString())
statTotalsMap?.get(statMetadata.key)?.let { statTotalAndMetadata: StatTotalAndMetadata ->
add(statTotalAndMetadata.total.toString())
}
}
},
Expand Down

0 comments on commit d5297c5

Please sign in to comment.