Skip to content

Commit

Permalink
fix: same problem in solicitudes api
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickwebsdev committed Nov 9, 2024
1 parent 1e08666 commit 41f2ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/solicitudes/[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 41f2ae2

Please sign in to comment.