react-native-biometric-verifier 0.0.5 → 0.0.6
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 +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -104,7 +104,7 @@ const BiometricVerificationModal = React.memo(({ data, qrscan = false, callback
|
|
|
104
104
|
|
|
105
105
|
try {
|
|
106
106
|
const body = { image: base64 }
|
|
107
|
-
const header = {
|
|
107
|
+
const header = { faceid: currentData }
|
|
108
108
|
const response = await networkServiceCall("POST",RECOGNIZE_URL,header,body);
|
|
109
109
|
if (response.httpstatus === 200) {
|
|
110
110
|
notifyMessage('Identity verified successfully!', 'success');
|