Skip to content

Commit

Permalink
Removed console log from source code
Browse files Browse the repository at this point in the history
  • Loading branch information
Rowan committed Jan 6, 2024
1 parent 9191f23 commit 2157613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export async function serveFragment<TProps>(
const url = new URL(req.url, "http://example.com"); // Change this for your actual server
const expectedSign = url.searchParams.get("sign");

console.log("URL ::: ", JSON.stringify(url));
// console.log("URL ::: ", JSON.stringify(url));

url.searchParams.delete("sign");
if (sign(url) !== expectedSign) {
Expand Down

0 comments on commit 2157613

Please sign in to comment.