Final release for 1.0.6. Resolve issue with destructure on CCC PPC.

This commit is contained in:
Patrick Fic
2025-09-17 12:02:57 -07:00
parent 41caa76b28
commit 83ca7a251b
2 changed files with 2 additions and 2 deletions

View File

@@ -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",

View File

@@ -14,7 +14,7 @@ const handlePartsPriceChangeRequest = async (
): Promise<void> => {
//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 });