@ekyc_qoobiss/qbs-ect-cmp 1.5.12 → 1.5.14
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/dist/cjs/agreement-check_12.cjs.entry.js +2 -1
- package/dist/collection/components/capture-error/capture-error.js +1 -0
- package/dist/collection/components/landing-validation/landing-validation.js +2 -1
- package/dist/esm/agreement-check_12.entry.js +2 -1
- package/dist/qbs-ect-cmp/{p-d2b71de8.entry.js → p-60fde6be.entry.js} +1 -1
- package/dist/qbs-ect-cmp/qbs-ect-cmp.esm.js +1 -1
- package/package.json +1 -1
|
@@ -5932,7 +5932,8 @@ const LandingValidation = class {
|
|
|
5932
5932
|
this.apiCall = new ApiCall();
|
|
5933
5933
|
}
|
|
5934
5934
|
async componentWillLoad() {
|
|
5935
|
-
await new Promise(
|
|
5935
|
+
await new Promise(f => setTimeout(f, 500));
|
|
5936
|
+
await this.initRequest();
|
|
5936
5937
|
}
|
|
5937
5938
|
async initRequest() {
|
|
5938
5939
|
this.saved = await this.apiCall.AddIdentificationRequest(state.requestId, JSON.stringify(this.device));
|
|
@@ -15,7 +15,8 @@ export class LandingValidation {
|
|
|
15
15
|
this.apiCall = new ApiCall();
|
|
16
16
|
}
|
|
17
17
|
async componentWillLoad() {
|
|
18
|
-
await new Promise(
|
|
18
|
+
await new Promise(f => setTimeout(f, 500));
|
|
19
|
+
await this.initRequest();
|
|
19
20
|
}
|
|
20
21
|
async initRequest() {
|
|
21
22
|
this.saved = await this.apiCall.AddIdentificationRequest(store.requestId, JSON.stringify(this.device));
|
|
@@ -5928,7 +5928,8 @@ const LandingValidation = class {
|
|
|
5928
5928
|
this.apiCall = new ApiCall();
|
|
5929
5929
|
}
|
|
5930
5930
|
async componentWillLoad() {
|
|
5931
|
-
await new Promise(
|
|
5931
|
+
await new Promise(f => setTimeout(f, 500));
|
|
5932
|
+
await this.initRequest();
|
|
5932
5933
|
}
|
|
5933
5934
|
async initRequest() {
|
|
5934
5935
|
this.saved = await this.apiCall.AddIdentificationRequest(state.requestId, JSON.stringify(this.device));
|