Skip to content

Commit 97e319d

Browse files
committed
Chore: 코드래빗 리뷰사항 반영
- 네이밍 변경 - 감정 조회 호출 시 LocalDate.now()를 통하도록 변경
1 parent e19aca6 commit 97e319d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

presentation/src/main/java/com/threegap/bitnagil/presentation/home/HomeViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class HomeViewModel @Inject constructor(
5858
observeRoutineUpdates()
5959
fetchWeeklyRoutines(container.stateFlow.value.currentWeeks)
6060
fetchUserProfile()
61-
fetchTodayEmotion(container.stateFlow.value.selectedDate)
61+
fetchTodayEmotion(LocalDate.now())
6262
}
6363

6464
override suspend fun SimpleSyntax<HomeState, HomeSideEffect>.reduceState(

presentation/src/main/java/com/threegap/bitnagil/presentation/home/component/template/EmptyRoutineView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fun EmptyRoutineView(
6464

6565
@Preview(showBackground = true)
6666
@Composable
67-
private fun RoutineEmptyViewPreview() {
67+
private fun EmptyRoutineViewPreview() {
6868
EmptyRoutineView(
6969
onRegisterRoutineClick = {},
7070
)

0 commit comments

Comments
 (0)