Skip to content

Commit d45a9f0

Browse files
committed
Chore: ktlint format
1 parent 32f11e0 commit d45a9f0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/designsystem/src/main/java/com/threegap/bitnagil/designsystem/modifier/ClickThrottler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ClickThrottler(private val throttleTimeMs: Long = 500L) {
1919
@Composable
2020
fun throttled(
2121
throttleTimeMs: Long = 500L,
22-
onClick: () -> Unit
22+
onClick: () -> Unit,
2323
): () -> Unit {
2424
val throttler = remember { ClickThrottler(throttleTimeMs) }
2525

presentation/src/main/java/com/threegap/bitnagil/presentation/routinelist/model/RoutineListPreviewData.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)