Skip to content

Commit

Permalink
[FIX] #82 : 달력 일정 endDate 기준으로 노란 점 찍던 거 startDate기준으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tgyuuAn committed Jan 6, 2024
1 parent 992c292 commit bd7245f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ private fun handleMonthEventsState(
is NoticeViewModel.EventsState.Loading -> CircleLoader(modifier = Modifier.fillMaxSize())
is NoticeViewModel.EventsState.Success -> {
val eventDates = eventsState.events.map {
it.endDateTime.toLocalDate()
it.startDateTime.toLocalDate()
}
CalendarBody(
selectedDate = selectedDate,
Expand Down

0 comments on commit bd7245f

Please sign in to comment.