Skip to content

Commit

Permalink
Fix type error in app/api/customer-card/route.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
hh authored and hh committed Dec 31, 2024
1 parent 557bd8b commit 216e06b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/app/api/customer-card/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const inputSchema = z.object({
cardKeys: z.array(z.string()),
});

export async function handler(request: Request) {
async function handler(request: Request) {
const headersList = headers();
const requestBody = await request.json();

Expand Down

0 comments on commit 216e06b

Please sign in to comment.