fix: rename error variable in GET function for consistency

This commit is contained in:
2025-12-29 23:04:19 +00:00
parent 6268cbb4bd
commit 1f88b32d0c

View File

@@ -30,7 +30,7 @@ export async function GET(_request: Request, { params }: { params: PackageParams
'Content-Type': contentType,
},
})
} catch (error) {
} catch (_error) {
return NextResponse.json({ error: 'Not found' }, { status: 404 })
}
}