We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02b9f8 commit 33428c8Copy full SHA for 33428c8
spec/helper.ts
@@ -78,9 +78,7 @@ export function runHandler(
78
79
const toSend = typeof sendBody === "object" ? JSON.stringify(sendBody) : sendBody;
80
const body =
81
- typeof this.sentBody === "undefined"
82
- ? toSend
83
- : this.sentBody + String(toSend || "");
+ typeof this.sentBody === "undefined" ? toSend : this.sentBody + String(toSend || "");
84
this.end(body);
85
}
86
src/v2/providers/https.ts
@@ -281,7 +281,6 @@ export function emailVerified(): AuthPolicy {
281
if (!auth) {
282
throw new Error("Must be signed in");
283
284
- console.log(auth)
285
return hasClaim("email_verified")(auth, undefined);
286
};
287
0 commit comments