Skip to content

Commit

Permalink
Add missing comas and remove empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
LunarX committed Oct 18, 2024
1 parent 30ef429 commit e1ff1f8
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ import androidx.compose.ui.unit.dp
import com.infomaniak.swisstransfer.R
import com.infomaniak.swisstransfer.ui.theme.Margin
import com.infomaniak.swisstransfer.ui.theme.SwissTransferTheme
import com.infomaniak.swisstransfer.ui.utils.PreviewLargeWindow
import com.infomaniak.swisstransfer.ui.utils.PreviewSmallWindow

import com.infomaniak.swisstransfer.ui.utils.PreviewAllWindows

private val WIDTH_LIMIT = 800.dp
private val WIDTH_THRESHOLD = 500.dp
Expand Down Expand Up @@ -106,9 +104,7 @@ private fun SingleButton(button: @Composable (Modifier) -> Unit) {
}
}


@PreviewSmallWindow
@PreviewLargeWindow
@PreviewAllWindows
@Composable
private fun DoubleButtonComboPreview() {
SwissTransferTheme {
Expand All @@ -127,7 +123,7 @@ private fun DoubleButtonComboPreview() {
titleRes = R.string.appName,
onClick = {},
)
}
},
)
DoubleButtonCombo(
bottomButton = {
Expand All @@ -136,7 +132,7 @@ private fun DoubleButtonComboPreview() {
titleRes = R.string.appName,
onClick = {},
)
}
},
)
}
}
Expand Down

0 comments on commit e1ff1f8

Please sign in to comment.