Skip to content

Commit 33428c8

Browse files
committed
Fix linter.
1 parent d02b9f8 commit 33428c8

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

spec/helper.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ export function runHandler(
7878

7979
const toSend = typeof sendBody === "object" ? JSON.stringify(sendBody) : sendBody;
8080
const body =
81-
typeof this.sentBody === "undefined"
82-
? toSend
83-
: this.sentBody + String(toSend || "");
81+
typeof this.sentBody === "undefined" ? toSend : this.sentBody + String(toSend || "");
8482
this.end(body);
8583
}
8684

src/v2/providers/https.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ export function emailVerified(): AuthPolicy {
281281
if (!auth) {
282282
throw new Error("Must be signed in");
283283
}
284-
console.log(auth)
285284
return hasClaim("email_verified")(auth, undefined);
286285
};
287286
}

0 commit comments

Comments
 (0)