react-native-biometric-verifier 0.0.31 → 0.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
faceAntiSpoofFrameProcessor,
|
|
7
7
|
initializeFaceAntiSpoof,
|
|
8
8
|
isFaceAntiSpoofAvailable,
|
|
9
|
-
} from 'react-native-vision-camera-
|
|
9
|
+
} from 'react-native-vision-camera-spoof-detector';
|
|
10
10
|
|
|
11
11
|
// Optimized constants - tuned for performance
|
|
12
12
|
const FACE_STABILITY_THRESHOLD = 3;
|
|
@@ -360,7 +360,6 @@ export const useFaceDetectionFrameProcessor = ({
|
|
|
360
360
|
if (state.flags.isFaceCentered) {
|
|
361
361
|
try {
|
|
362
362
|
antiSpoofResult = faceAntiSpoofFrameProcessor?.(frame);
|
|
363
|
-
|
|
364
363
|
if (antiSpoofResult != null) {
|
|
365
364
|
state.antiSpoof.lastResult = antiSpoofResult;
|
|
366
365
|
|