From 88ed1b626219fcc26e4fd7ae24b656acda597bc4 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 16 Jul 2024 15:47:21 +0200 Subject: [PATCH] Fix typo. --- .../features/lockscreen/impl/unlock/keypad/PinKeypad.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt b/features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt index 4033a1b6f7..dfd6b367b7 100644 --- a/features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt +++ b/features/lockscreen/impl/src/main/kotlin/io/element/android/features/lockscreen/impl/unlock/keypad/PinKeypad.kt @@ -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,