Skip to content

Commit

Permalink
Fixed code-style again
Browse files Browse the repository at this point in the history
  • Loading branch information
borichellow committed Oct 10, 2024
1 parent 3460ba7 commit f4eadad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import com.wire.android.ui.theme.wireTypography
@Composable
fun WireSecondaryButton(
onClick: () -> Unit,
modifier: Modifier = Modifier,
loading: Boolean = false,
leadingIcon: @Composable (() -> Unit)? = null,
leadingIconAlignment: IconAlignment = IconAlignment.Center,
Expand All @@ -70,8 +71,7 @@ fun WireSecondaryButton(
vertical = MaterialTheme.wireDimensions.buttonVerticalContentPadding
),
interactionSource: MutableInteractionSource = remember { MutableInteractionSource() },
@StringRes contentDescriptionRes: Int? = null,
modifier: Modifier = Modifier,
@StringRes contentDescriptionRes: Int? = null
) = WireButton(
onClick = onClick,
loading = loading,
Expand Down

0 comments on commit f4eadad

Please sign in to comment.