We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af8cd01 commit b8b85ccCopy full SHA for b8b85cc
vite-web-sdk/main.js
@@ -15,7 +15,7 @@ async function startOnboardingSession() {
15
if (uuid) sessionStartUrl +=`?uuid=${uuid}`;
16
17
const response = await fetch(sessionStartUrl);
18
- if (!response.ok){
+ if (!response.ok) {
19
const sessionData = await response.json();
20
throw new Error(sessionData.error);
21
}
@@ -51,6 +51,11 @@ function renderUserConsent(){
51
52
53
function renderFrontIDCamera() {
54
+
55
+ // Optional but valuable for fraud prevention, hurts conversion
56
+ // incode.sendFingerprint(session);
57
+ // incode.sendGeolocation(session);
58
59
incode.renderCamera("front", container, {
60
onSuccess: renderBackIDCamera,
61
onError: showError,
0 commit comments