Skip to content

Commit

Permalink
fix: images api
Browse files Browse the repository at this point in the history
  • Loading branch information
NedcloarBR committed Jan 12, 2025
1 parent 4e44411 commit c9526dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/api/images/[project]/route.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import fs from "node:fs";
import path from "node:path";
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";

export async function GET(
request: NextRequest,
request: Request,
context: { params: Promise<{ project: string }> }
) {
const project = (await context.params).project;
Expand Down

0 comments on commit c9526dd

Please sign in to comment.