Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Jul 16, 2024
1 parent 9e7d938 commit 459c99e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private fun PinKeypadRow(
)
}
is PinKeypadModel.Number -> {
PinKeyBadDigitButton(
PinKeypadDigitButton(
size = pinKeySize,
modifier = commonModifier,
digit = model.number.toString(),
Expand Down Expand Up @@ -158,7 +158,7 @@ private fun PinKeypadButton(
}

@Composable
private fun PinKeyBadDigitButton(
private fun PinKeypadDigitButton(
digit: String,
size: Dp,
onClick: (String) -> Unit,
Expand Down

0 comments on commit 459c99e

Please sign in to comment.