From 056aab25609f885ddacb2f327191e5869252ee31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20=C5=BBuraw?= <9116238+krzysztofzuraw@users.noreply.github.com> Date: Fri, 18 Nov 2022 15:59:58 +0100 Subject: [PATCH] Allow to send 0 as price (#2620) --- src/shipping/handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shipping/handlers.ts b/src/shipping/handlers.ts index 9a5983cae..61bf37cd5 100644 --- a/src/shipping/handlers.ts +++ b/src/shipping/handlers.ts @@ -192,7 +192,7 @@ export function getShippingMethodChannelVariables( channel.maxValue && orderValueRestricted ? channel.maxValue : null, minimumOrderPrice: channel.minValue && orderValueRestricted ? channel.minValue : null, - price: channel.price || null, + price: channel.price, })) || [], removeChannels, },