From fa425fd45bea5b6c4ecd8a7fe134b030cd3d937a Mon Sep 17 00:00:00 2001 From: Pascal Kaufmann Date: Fri, 31 Mar 2023 09:35:09 +0200 Subject: [PATCH] No need to check this here because the missingInputDataForCheckout already ran through before --- .../src/module/configureOrdersModule-processing.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/core-orders/src/module/configureOrdersModule-processing.ts b/packages/core-orders/src/module/configureOrdersModule-processing.ts index 4570d3a96a..b24af1663b 100644 --- a/packages/core-orders/src/module/configureOrdersModule-processing.ts +++ b/packages/core-orders/src/module/configureOrdersModule-processing.ts @@ -234,9 +234,7 @@ export const configureOrderModuleProcessing = ({ unchainedAPI: UnchainedCore, ): Promise => { if (status === null) { - if ((await missingInputDataForCheckout(order)).length === 0) { - return OrderStatus.PENDING; - } + return OrderStatus.PENDING; } if (status === OrderStatus.PENDING) {