Skip to content

Commit

Permalink
Merge pull request #56 from kotalco/staging
Browse files Browse the repository at this point in the history
merge staging into main
  • Loading branch information
mFarghaly authored May 4, 2024
2 parents 660a21c + 0c60345 commit aa2e8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(auth)/(routes)/confirm-email/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function GET(req: NextRequest) {
const email = searchParams.get("email");
const token = searchParams.get("token");

const response = NextResponse.redirect(`${protocol}//${domain}/sign-in`);
const response = NextResponse.redirect(`${protocol}://${domain}/sign-in`);

try {
await server.post("/users/verify_email", { email, token });
Expand Down

0 comments on commit aa2e8ff

Please sign in to comment.