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 -> {
PinKeyBadDigitButton(
PinKeypadDigitButton(
size = pinKeySize,
modifier = commonModifier,
digit = model.number.toString(),
@@ -158,7 +158,7 @@ private fun PinKeypadButton(
}
@Composable
private fun PinKeyBadDigitButton(
private fun PinKeypadDigitButton(
digit: String,
size: Dp,
onClick: (String) -> Unit,