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", "name": "bodyshop-desktop",
"version": "1.0.6-beta.2", "version": "1.0.6",
"description": "Shop Management System Partner", "description": "Shop Management System Partner",
"main": "./out/main/index.js", "main": "./out/main/index.js",
"author": "Convenient Brands, LLC", "author": "Convenient Brands, LLC",

View File

@@ -14,7 +14,7 @@ const handlePartsPriceChangeRequest = async (
): Promise<void> => { ): Promise<void> => {
//Route handler here only. //Route handler here only.
const { job } = req.body as { job: PpcJob }; const job = req.body as PpcJob;
try { try {
await generatePartsPriceChange(job); await generatePartsPriceChange(job);
res.status(200).json({ success: true }); res.status(200).json({ success: true });