Fix typo.

This commit is contained in:
Benoit Marty 2024-07-16 15:47:21 +02:00
parent 8ddf1a42dc
commit 88ed1b6262

View file

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