Skip to content

Commit

Permalink
fix(api): updated signin route reference
Browse files Browse the repository at this point in the history
  • Loading branch information
JaleelB committed Jul 30, 2024
1 parent ae361a5 commit 9ae564e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/api/login/verify-email/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export async function GET(request: Request): Promise<Response> {
return new Response(null, {
status: 302,
headers: {
Location: "/sign-in",
Location: "/signin",
},
});
}
Expand All @@ -29,7 +29,7 @@ export async function GET(request: Request): Promise<Response> {
return new Response(null, {
status: 302,
headers: {
Location: "/sign-in",
Location: "/signin",
},
});
}
Expand Down

0 comments on commit 9ae564e

Please sign in to comment.