Skip to content

Commit

Permalink
Add address argument as null
Browse files Browse the repository at this point in the history
  • Loading branch information
SiarheyUchukhlebau committed Mar 15, 2023
1 parent 3180a92 commit 0fe7a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Model/Resolver/SetDeliveryDateOnCart.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function resolve(Field $field, $context, ResolveInfo $info, array $value

$deliveryDateDataObject = $this->createDeliveryDateDataObjectFromArray($deliveryDateData);
try {
$this->queueManager->setDeliveryDateForGuestCart($maskedCartId, $deliveryDateDataObject);
$this->queueManager->setDeliveryDateForGuestCart($maskedCartId, $deliveryDateDataObject, null);
} catch (QueueException|LocalizedException $e) {
throw new GraphQlNoSuchEntityException(__($e->getMessage()));
}
Expand Down

0 comments on commit 0fe7a1c

Please sign in to comment.