Skip to content

Commit 9ae564e

Browse files
committed
fix(api): updated signin route reference
1 parent ae361a5 commit 9ae564e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/api/login/verify-email/route.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export async function GET(request: Request): Promise<Response> {
1111
return new Response(null, {
1212
status: 302,
1313
headers: {
14-
Location: "/sign-in",
14+
Location: "/signin",
1515
},
1616
});
1717
}
@@ -29,7 +29,7 @@ export async function GET(request: Request): Promise<Response> {
2929
return new Response(null, {
3030
status: 302,
3131
headers: {
32-
Location: "/sign-in",
32+
Location: "/signin",
3333
},
3434
});
3535
}

0 commit comments

Comments
 (0)