Skip to content

Commit

Permalink
[CHORE/#122] 데이트피커 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed Jul 18, 2024
1 parent b76cbda commit b43b562
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ fun ChangeFilterScreen(
Spacer(modifier = Modifier.weight(1f))
DatePickerUI(
chosenYear = filterData.startYear ?: currentStartYear,
chosenMonth = filterData.startMonth ?: currentStartMonth,
chosenMonth = filterData.startMonth?.minus(1) ?: currentStartMonth,
onYearChosen = { currentStartYear = it },
onMonthChosen = { currentStartMonth = it }
)
Expand Down

0 comments on commit b43b562

Please sign in to comment.