Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Jan 1, 2025
1 parent d3d6a0f commit 201b867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/api/test/assert-bearer/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function POST(req: Request) {
if (!token || token !== ALLOWED_TEST_BEARER) {
return NextResponse.json(
{ message: "Bearer token is missing in cookies" },
{ status: 401 }
{ status: 401 },
);
}

Expand All @@ -22,7 +22,7 @@ export async function POST(req: Request) {
} catch {
return NextResponse.json(
{ message: "Invalid request body" },
{ status: 400 }
{ status: 400 },
);
}
}

0 comments on commit 201b867

Please sign in to comment.