diff --git a/src/controllers/quotation-controller.ts b/src/controllers/quotation-controller.ts index 6bbbdc3..3679852 100644 --- a/src/controllers/quotation-controller.ts +++ b/src/controllers/quotation-controller.ts @@ -793,7 +793,7 @@ export class QuotationController extends Controller { @Delete("{quotationId}") @Security("keycloak", MANAGE_ROLES) - async deleteQuotationById(@Request() req: RequestWithUser, @Path() quotationId: string) { + async deleteQuotationById(@Path() quotationId: string) { const record = await prisma.quotation.findUnique({ where: { id: quotationId }, });