Skip to content

Commit 02107f9

Browse files
[MOO-2320] : Biometric Authetication not working issue fix (#531)
2 parents 8c4a7e8 + 548929d commit 02107f9

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

packages/jsActions/mobile-resources-native/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
- We have fixed the biometric authentication issue where it was not working on Android and crashing on iOS.
10+
911
## [12.1.0] Native Mobile Resources - 2026-6-10
1012

1113
- Updated react-native from version 0.83.4 to 0.84.1.

packages/jsActions/mobile-resources-native/src/authentication/BiometricAuthentication.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function BiometricAuthentication(reason?: string): Promise<boolean>
1818
// BEGIN USER CODE
1919
// Documentation https://github.com/sbaiahmed1/react-native-biometrics
2020

21-
return simplePrompt(reason ?? "")
21+
return simplePrompt(reason || "Verify your identity to continue")
2222
.then(result => result.success)
2323
.catch(() => false);
2424

0 commit comments

Comments
 (0)