Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Fix of [BUG] App crashes when viewing expanded categories in expense or income section #3449

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ fun todayStartOfDayUtc(
): Instant = with(timeConverter) {
timeProvider.localNow()
.withHour(0)
.withDayOfMonth(0)
.withMinute(0)
.withSecond(0)
.toUTC()
}

Expand Down