Browse Source

Fix typo.

pull/3205/head
Benoit Marty 2 months ago
parent
commit
459c99e45f
  1. 4
      features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt

4
features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt

@ -129,7 +129,7 @@ private fun PinKeypadRow( @@ -129,7 +129,7 @@ private fun PinKeypadRow(
)
}
is PinKeypadModel.Number -> {
PinKeyBadDigitButton(
PinKeypadDigitButton(
size = pinKeySize,
modifier = commonModifier,
digit = model.number.toString(),
@ -158,7 +158,7 @@ private fun PinKeypadButton( @@ -158,7 +158,7 @@ private fun PinKeypadButton(
}
@Composable
private fun PinKeyBadDigitButton(
private fun PinKeypadDigitButton(
digit: String,
size: Dp,
onClick: (String) -> Unit,

Loading…
Cancel
Save