Skip to content

Commit

Permalink
chore: 불필요한 MutableList 캐스팅 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yangsooplus committed Jan 10, 2024
1 parent e282f11 commit b93aecb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fun SusuDatePickerBottomSheet(
)
InfiniteColumn(
modifier = Modifier.width(100.dp),
items = (1..lastDayInMonth).map { "${it}" }.toMutableList(),
items = (1..lastDayInMonth).map { "${it}" },
initialItem = "${selectedDay}",
itemHeight = itemHeight,
numberOfDisplayedItems = numberOfDisplayedItems,
Expand Down

0 comments on commit b93aecb

Please sign in to comment.