We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303e0c1 commit 1dd60c7Copy full SHA for 1dd60c7
app/api/get-schema/[name]/route.ts
@@ -29,8 +29,8 @@ export const dynamic = "force-dynamic";
29
export const fetchCache = "force-no-store";
30
31
// Use the simplest form for Next.js 15 compatibility
32
-// Type the parameters with any to satisfy TypeScript without conflicting with Next.js
33
-export async function GET(request: any, context: any) {
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+export async function GET(request: Request, context: any) {
34
// Extract schema name from URL params
35
const schemaName = context.params.name;
36
0 commit comments