From aabbf4faab2bc5264879bfc8a2a45d0f53a4a0ed Mon Sep 17 00:00:00 2001 From: eric-sproles-volusion Date: Fri, 16 Oct 2020 17:31:40 -0700 Subject: [PATCH] fix typo - volt spelling of cancelled --- functions/toShipStation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/toShipStation.js b/functions/toShipStation.js index 2f1cf80..aac062f 100644 --- a/functions/toShipStation.js +++ b/functions/toShipStation.js @@ -54,7 +54,7 @@ async function sendVoltOrdersToShipStation(req) { return "awaiting_shipment"; case "Complete": return "shipped"; - case "Cancelled": + case "Canceled": return "cancelled"; } }