대시보드, GNB 추가
CI / test (push) Successful in 4m58s
CI / e2e (push) Has been skipped
CI / pr_and_merge (push) Successful in 1m45s

This commit is contained in:
2025-12-08 06:59:52 +09:00
parent b40be693ee
commit 9d8c4538c7
18 changed files with 1595 additions and 86 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ export default function SignupPage() {
try {
const res = await fetch("/api/auth/me");
if (!cancelled && res.ok) {
router.push("/projects");
router.push("/dashboard");
}
} catch {
// ignore
@@ -61,7 +61,7 @@ export default function SignupPage() {
return;
}
router.push("/projects");
router.push("/dashboard");
} catch {
setError("네트워크 오류가 발생했습니다. 잠시 후 다시 시도해 주세요.");
} finally {