From 2a7d465424b198da95b6bce51eeaae3f8b469981 Mon Sep 17 00:00:00 2001 From: Nivetharamesh Date: Fri, 30 May 2025 10:20:36 +0530 Subject: [PATCH] product changes --- src/api-server/controller/simulation/productService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api-server/controller/simulation/productService.ts b/src/api-server/controller/simulation/productService.ts index 54f6251..32e5257 100644 --- a/src/api-server/controller/simulation/productService.ts +++ b/src/api-server/controller/simulation/productService.ts @@ -5,7 +5,7 @@ import EventsDataModel from "../../../shared/model/simulation/eventsDataModel.ts export class ProductFlowservice { static async productAdd(req: Request, res: Response): Promise { try { - const { productName, productId, , organization } = req.body; + const { productName, productId, organization } = req.body; if (!organization) { return res.json({ message: "organization not found" }); }