Skip to content

Commit

Permalink
fix: show all in monthly screen on android
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriykulikov committed Jul 6, 2024
1 parent d84ef39 commit caea5f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private fun AppContent(
)
is Screen.Regular -> {
val list: State<List<GroupReport>> =
remember { monthlyStatistics.reports(GroupReport.Type.REGULAR) }
remember { monthlyStatistics.reports(GroupReport.Type.ALL) }
.collectAsState(initial = emptyList())
MonthlyScreen(
list.value,
Expand Down

0 comments on commit caea5f3

Please sign in to comment.