Skip to content

Commit 16e876a

Browse files
committed
fix: remove debug log
1 parent 601d945 commit 16e876a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

middleware.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ export async function middleware(request: NextRequest) {
3434
}
3535

3636
try {
37-
const { role, loggedIn, introspectResult } = await getAuthStatus();
38-
39-
console.log("introspectResult", introspectResult);
37+
const { role, loggedIn } = await getAuthStatus();
4038

4139
if (!loggedIn) {
4240
// Handle unauthenticated requests

0 commit comments

Comments
 (0)