Final release for 1.0.6. Resolve issue with destructure on CCC PPC.
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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 });
|
||||
|
||||
Reference in New Issue
Block a user