Skip to content

Commit

Permalink
fix: invalid type
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwebsdev committed Nov 9, 2024
1 parent bc9dfb1 commit 1e08666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/ofertas/[id]/route.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createServerRoleClient } from '@/lib/supabase/serverrole';
import { NextRequest } from 'next/server';

export async function GET(request: NextRequest, { params }: { params: { id: string } }) {
export async function GET(request: NextRequest, { params }: any) {
const id = params.id;

const supabase = await createServerRoleClient();
Expand Down

0 comments on commit 1e08666

Please sign in to comment.