Skip to content

Commit d59a2c0

Browse files
committed
fix: type error with an ignore
1 parent f2761ab commit d59a2c0

File tree

1 file changed

+1
-0
lines changed
  • collection/app/api/imports/[importId]

1 file changed

+1
-0
lines changed

collection/app/api/imports/[importId]/route.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { auth } from "@/auth";
22
import { getItemsInImport } from "@/lib/crud/importCsv";
33
import { NextRequest, NextResponse } from "next/server";
44

5+
/// @ts-expect-error: Weird types
56
export const GET = auth(async (request, { params }: { params?: { importId?: string } }) => {
67
if (!request.auth) {
78
return NextResponse.json(

0 commit comments

Comments
 (0)