We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e19aca6 commit 97e319dCopy full SHA for 97e319d
2 files changed
presentation/src/main/java/com/threegap/bitnagil/presentation/home/HomeViewModel.kt
@@ -58,7 +58,7 @@ class HomeViewModel @Inject constructor(
58
observeRoutineUpdates()
59
fetchWeeklyRoutines(container.stateFlow.value.currentWeeks)
60
fetchUserProfile()
61
- fetchTodayEmotion(container.stateFlow.value.selectedDate)
+ fetchTodayEmotion(LocalDate.now())
62
}
63
64
override suspend fun SimpleSyntax<HomeState, HomeSideEffect>.reduceState(
presentation/src/main/java/com/threegap/bitnagil/presentation/home/component/template/EmptyRoutineView.kt
@@ -64,7 +64,7 @@ fun EmptyRoutineView(
65
@Preview(showBackground = true)
66
@Composable
67
-private fun RoutineEmptyViewPreview() {
+private fun EmptyRoutineViewPreview() {
68
EmptyRoutineView(
69
onRegisterRoutineClick = {},
70
)
0 commit comments