Skip to content

Commit 2625ea2

Browse files
committed
clean up uncommented code
1 parent ba364c6 commit 2625ea2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/home/Home.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,7 @@ private fun HomeScreen(
395395

396396
val coroutineScope = rememberCoroutineScope()
397397
val snackbarHostState = remember { SnackbarHostState() }
398-
HomeScreenBackground(
399-
// modifier = modifier.windowInsetsPadding(WindowInsets.navigationBars),
400-
) {
398+
HomeScreenBackground {
401399
Scaffold(
402400
topBar = {
403401
Column {

Jetcaster/mobile/src/main/java/com/example/jetcaster/ui/player/PlayerScreen.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ fun PlayerContentWithBackground(
217217
displayFeatures = displayFeatures,
218218
onBackPress = onBackPress,
219219
onAddToQueue = onAddToQueue,
220-
playerControlActions = playerControlActions
220+
playerControlActions = playerControlActions,
221221
)
222222
}
223223
}
@@ -296,7 +296,7 @@ fun PlayerContent(
296296
endYPercentage = 0f,
297297
)
298298
.windowInsetsPadding(WindowInsets.safeDrawing)
299-
.padding(horizontal = 8.dp)
299+
.padding(horizontal = 8.dp),
300300
) {
301301
TopAppBar(
302302
onBackPress = onBackPress,
@@ -356,7 +356,7 @@ private fun PlayerContentRegular(
356356
endYPercentage = 0f,
357357
)
358358
.windowInsetsPadding(WindowInsets.safeDrawing)
359-
.padding(horizontal = 8.dp)
359+
.padding(horizontal = 8.dp),
360360
) {
361361
TopAppBar(
362362
onBackPress = onBackPress,

0 commit comments

Comments
 (0)