From 7f603c83e906f5fcbbde862a26d8ce12e9e80127 Mon Sep 17 00:00:00 2001 From: Unchained Date: Mon, 23 Mar 2026 13:20:37 +0200 Subject: [PATCH] fix: correct checkoutLinesDelete parameter name lines -> lineIds --- src/lib/saleor/mutations/Checkout.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/saleor/mutations/Checkout.ts b/src/lib/saleor/mutations/Checkout.ts index 32207bc..f836cde 100644 --- a/src/lib/saleor/mutations/Checkout.ts +++ b/src/lib/saleor/mutations/Checkout.ts @@ -51,7 +51,7 @@ export const CHECKOUT_LINES_UPDATE = gql` export const CHECKOUT_LINES_DELETE = gql` mutation CheckoutLinesDelete($checkoutId: ID!, $lineIds: [ID!]!) { - checkoutLinesDelete(checkoutId: $checkoutId, lines: $lineIds) { + checkoutLinesDelete(checkoutId: $checkoutId, lineIds: $lineIds) { checkout { ...CheckoutFragment }