Skip to content

Commit

Permalink
chore: Remove console logs from route
Browse files Browse the repository at this point in the history
  • Loading branch information
richiemcilroy committed Apr 16, 2024
1 parent 45f85ec commit a4841b8
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions apps/web/app/api/desktop/session/authenticate/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ export async function GET(req: NextRequest) {
const token = searchParams.get("token");
const redirect = searchParams.get("redirect");

console.log("Route.ts fired");

console.log("Token: ", token);
console.log("Redirect: ", redirect);

if (!token) {
return new Response(
JSON.stringify({ error: true, message: "Token not supplied" }),
Expand Down

1 comment on commit a4841b8

@vercel
Copy link

@vercel vercel bot commented on a4841b8 Apr 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.