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 988268d commit ab7e20fCopy full SHA for ab7e20f
lib/signed-fetch.ts
@@ -3,7 +3,6 @@
3
import jwt from 'jsonwebtoken';
4
5
export async function signedFetch(path: string, init: RequestInit = {}) {
6
- console.log('JWT', process.env.INTERNAL_JWT_SECRET);
7
const token = jwt.sign({}, process.env.INTERNAL_JWT_SECRET!, { expiresIn: '2m' });
8
9
const headers = new Headers(init.headers);
0 commit comments