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 });