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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-biometric-verifier",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "A React Native module for biometric verification with face recognition and QR code scanning",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -6,7 +6,7 @@ import {
6
6
  faceAntiSpoofFrameProcessor,
7
7
  initializeFaceAntiSpoof,
8
8
  isFaceAntiSpoofAvailable,
9
- } from 'react-native-vision-camera-face-antispoof-detector';
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