clean up and disabled beta lock
CI / test (push) Successful in 27s

This commit is contained in:
2026-03-11 07:32:58 -04:00
parent 140b83bd65
commit f8265063d5
5 changed files with 49 additions and 17 deletions
-5
View File
@@ -77,11 +77,6 @@ export function middleware(req: NextRequest) {
if (!isLoggedIn) return redirectToLogin(req);
}
// Protect the builder UI
if (pathname === "/builder" || pathname.startsWith("/builder/")) {
if (!isLoggedIn) return redirectToLogin(req);
}
return NextResponse.next();
}