Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawa authored and Pururun committed Sep 11, 2023
1 parent 7954be6 commit ecc2326
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ fun ChangelogDialog(changesList: List<String>, version: String, onDismiss: () ->
text = {
Column(
modifier = Modifier.fillMaxWidth(),
verticalArrangement =
Arrangement.spacedBy(Dimens.smallPadding)
verticalArrangement = Arrangement.spacedBy(Dimens.smallPadding)
) {
Text(
text = stringResource(R.string.changes_dialog_subtitle),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,7 @@ import net.mullvad.mullvadvpn.util.isValidMtu
@Preview
@Composable
private fun PreviewMtuDialog() {
MtuDialog(
mtuInitial = 1234,
onSave = {},
onRestoreDefaultValue = {},
onDismiss = {}
)
MtuDialog(mtuInitial = 1234, onSave = {}, onRestoreDefaultValue = {}, onDismiss = {})
}

@Composable
Expand Down

0 comments on commit ecc2326

Please sign in to comment.