From 71af1c465ec1a66765f0c220321f8b18038d69ff Mon Sep 17 00:00:00 2001 From: JavidHaji-zada Date: Wed, 10 Jan 2024 14:07:44 +0400 Subject: [PATCH] Fix translation issue --- src/screens/PasscodeEntry/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/PasscodeEntry/index.tsx b/src/screens/PasscodeEntry/index.tsx index 4e7a9bafc..d5816b2b9 100644 --- a/src/screens/PasscodeEntry/index.tsx +++ b/src/screens/PasscodeEntry/index.tsx @@ -49,7 +49,7 @@ export const PasscodeEntry = () => { const result = await LocalAuthentication.authenticateAsync({ promptMessage: t('security.authenticate.with.face.id'), fallbackLabel: t('security.enter.pin'), - cancelLabel: t('buttons.cancel') + cancelLabel: t('button.cancel') }); if (result.success) { isAuthSuccessfulRef.current = true;