From f08f6c9a20aed38f3738c97b71043296b8ad21ca Mon Sep 17 00:00:00 2001 From: Sainan Date: Mon, 20 Jan 2025 12:09:37 +0100 Subject: [PATCH] fix type --- src/controllers/custom/importController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/custom/importController.ts b/src/controllers/custom/importController.ts index 8c5f8c04..77d4d2cb 100644 --- a/src/controllers/custom/importController.ts +++ b/src/controllers/custom/importController.ts @@ -23,5 +23,5 @@ export const importController: RequestHandler = async (req, res) => { }; interface IImportRequest { - inventory: IInventoryClient; + inventory: Partial; }