We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f801bd commit 65bf307Copy full SHA for 65bf307
example/main.ts
@@ -39,7 +39,7 @@ app.post("/verify", async (ctx) => {
39
console.log("verifying presentation", body);
40
41
return ctx.json({
42
- TODO: "this",
+ verified: "TODO",
43
});
44
45
example/static/index.html
@@ -88,7 +88,7 @@ <h1>SimpleDigiCreds Example Site</h1>
88
JSON.stringify(verificationJSON, null, 2)
89
);
90
91
- if (verificationJSON && verificationJSON.verified) {
+ if (verificationJSON && verificationJSON.verified === true) {
92
elemSuccess.innerHTML = "Successfully requested a credential!";
93
} else {
94
elemError.innerHTML = `Oh no, something went wrong! Response: <pre>${JSON.stringify(
0 commit comments