Skip to content

Commit

Permalink
Linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed Mar 10, 2024
1 parent 0dac647 commit 18eba1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/-/destination/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function assureArrayLength(specs: string[]) {
throw new Error("Too many specs");
}

export async function GET(req: NextRequest, { params }: { params: {} }) {
export async function GET(req: NextRequest, {}: { params: {} }) {
const { searchParams } = new URL(req.url);

const specsOrVersions = assureArrayLength(
Expand Down

0 comments on commit 18eba1b

Please sign in to comment.