File tree Expand file tree Collapse file tree
core/designsystem/src/main/java/com/threegap/bitnagil/designsystem/modifier
presentation/src/main/java/com/threegap/bitnagil/presentation/routinelist/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class ClickThrottler(private val throttleTimeMs: Long = 500L) {
1919@Composable
2020fun throttled (
2121 throttleTimeMs : Long = 500L,
22- onClick : () -> Unit
22+ onClick : () -> Unit ,
2323): () -> Unit {
2424 val throttler = remember { ClickThrottler (throttleTimeMs) }
2525
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ private val withRoutinesState = RoutineListState(
4848 selectedDate = today,
4949 routines = RoutineScheduleUiModel (
5050 routines = mapOf (
51- today.toString() to DailyRoutinesUiModel (routines = sampleRoutines)
52- )
51+ today.toString() to DailyRoutinesUiModel (routines = sampleRoutines),
52+ ),
5353 ),
5454 selectedRoutine = null ,
5555 deleteConfirmBottomSheetVisible = false ,
You can’t perform that action at this time.
0 commit comments