Skip to content

Commit

Permalink
removed extra comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonetorres committed Apr 11, 2024
1 parent c9d7c22 commit a78f1b7
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/auth/callback/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,5 @@ export async function GET(request: Request) {
const requestUrl = new URL(request.url);
const code = requestUrl.searchParams.get('code');

// If code is present, it means the user has completed the sign-in process
// You can handle the sign-in process completion here
// For example, you might want to set a cookie or session variable to indicate the user is signed in

// URL to redirect to after sign-in process completes
return NextResponse.redirect(requestUrl.origin);
}

0 comments on commit a78f1b7

Please sign in to comment.