fix: correct checkoutLinesDelete parameter name lines -> lineIds
Some checks failed
Build and Deploy / build (push) Has been cancelled

This commit is contained in:
Unchained
2026-03-23 13:20:37 +02:00
parent 0e9ad28dcf
commit 7f603c83e9

View File

@@ -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
}