While debugging, we found that in the promptForPin() method in the android code for biometrics, it's checking for the wrong property.
|
if (!options?.pinFallBack) { |
if (!options?.pinFallBack) {
should be
if (!options?.pinFallback) {
NOTE: We can fix it by passing both pinFallBack and pinFallback through on the options, but it would be best if this were fixed.
While debugging, we found that in the promptForPin() method in the android code for biometrics, it's checking for the wrong property.
plugins/packages/biometrics/index.android.ts
Line 426 in a503c40
if (!options?.pinFallBack) {should be
if (!options?.pinFallback) {NOTE: We can fix it by passing both
pinFallBackandpinFallbackthrough on the options, but it would be best if this were fixed.