From 83ca7a251bc3ac60f86f301ed58f7cf8522c680e Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Wed, 17 Sep 2025 12:02:57 -0700 Subject: [PATCH] Final release for 1.0.6. Resolve issue with destructure on CCC PPC. --- package.json | 2 +- src/main/ppc/ppc-handler.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 5fa92fa..2be1f31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bodyshop-desktop", - "version": "1.0.6-beta.2", + "version": "1.0.6", "description": "Shop Management System Partner", "main": "./out/main/index.js", "author": "Convenient Brands, LLC", diff --git a/src/main/ppc/ppc-handler.ts b/src/main/ppc/ppc-handler.ts index 51874ef..78d8f9d 100644 --- a/src/main/ppc/ppc-handler.ts +++ b/src/main/ppc/ppc-handler.ts @@ -14,7 +14,7 @@ const handlePartsPriceChangeRequest = async ( ): Promise => { //Route handler here only. - const { job } = req.body as { job: PpcJob }; + const job = req.body as PpcJob; try { await generatePartsPriceChange(job); res.status(200).json({ success: true });