From c29ec941ca637b625901b4e243e734e3f540536d Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:44:01 +0700 Subject: [PATCH] chore: remove unused --- src/controllers/quotation-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, });