diff --git a/presentation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/common/view/calendar/CalendarScreen.kt b/presentation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/common/view/calendar/CalendarScreen.kt index a644654c..4756a0c8 100644 --- a/presentation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/common/view/calendar/CalendarScreen.kt +++ b/presentation/src/main/kotlin/ac/dnd/bookkeeping/android/presentation/common/view/calendar/CalendarScreen.kt @@ -136,7 +136,9 @@ fun CalendarComponent( ) ) } - itemContent(dayItem) + if (dayItem.dayType != CalendarDayType.OTHER_MONTH) { + itemContent(dayItem) + } } } }