https://github.com/Shopify/hydrogen/blob/fcfbcaa299f46788d2fbabf24d021b8a8dcaadae/packages/hydrogen/src/cart/queries/cartGetDefault.ts#L66 this line should be ```ts const cartId = cartInput.cartId ?? getCartId(); ``` otherwise the given `cartId` member with `cartInput` object is completely ignored, `getCartId` may return `null` and exit the function early.
hydrogen/packages/hydrogen/src/cart/queries/cartGetDefault.ts
Line 66 in fcfbcaa
this line should be
otherwise the given
cartIdmember withcartInputobject is completely ignored,getCartIdmay returnnulland exit the function early.