feat: redirect to boards on login

This commit is contained in:
Henry
2025-02-26 22:22:01 +00:00
parent 00ee2a9a89
commit f3fb71fe50
3 changed files with 11 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ export default async function handler(req: NextRequest) {
if (authRes?.error) {
console.error(authRes.error);
} else {
next = queryParams.next ?? "/";
next = queryParams.next ?? "/boards";
}
}