--- title: useOptimisticCart description: The `useOptimisticCart` takes an existing cart object, processes all pending cart actions, and locally mutates the cart with optimistic state. An optimistic cart makes cart actions immediately render in the browser while actions sync to the server. This increases the perceived performance of the application. api_version: 2025-05 api_name: hydrogen source_url: html: https://shopify.dev/docs/api/hydrogen/latest/hooks/useoptimisticcart md: https://shopify.dev/docs/api/hydrogen/latest/hooks/useoptimisticcart.md --- # use​Optimistic​Cartutility The `useOptimisticCart` takes an existing cart object, processes all pending cart actions, and locally mutates the cart with optimistic state. An optimistic cart makes cart actions immediately render in the browser while actions sync to the server. This increases the perceived performance of the application. ## use​Optimistic​Cart([cart](#props-propertydetail-cart)​) ### Parameters * cart DefaultCart The cart object from `context.cart.get()` returned by a server loader. ### Returns * OptimisticCart\; }; }> A new cart object augmented with optimistic state for `lines` and `totalQuantity`. Each cart line item that is optimistically added includes an `isOptimistic` property. Also if the cart has *any* optimistic state, a root property `isOptimistic` will be set to `true`. ### DefaultCart ```ts Promise | CartReturn | null ``` ### CartReturn ```ts Cart & { errors?: StorefrontApiErrors; } ``` ### Cart ```ts Cart ``` ### StorefrontApiErrors ```ts JsonGraphQLError[] | undefined ``` ### JsonGraphQLError ```ts ReturnType ``` ### OptimisticCart ```ts T extends undefined | null ? // This is the null/undefined case, where the cart has yet to be created. // But we still need to provide an optimistic cart object. { isOptimistic?: boolean; lines: { nodes: Array; }; totalQuantity?: number; } & Omit, 'lines'> : Omit & { isOptimistic?: boolean; lines: { nodes: Array>; }; totalQuantity?: number; } ``` ### OptimisticCartLine ```ts T extends LikeACart ? T['lines']['nodes'][number] & {isOptimistic?: boolean} : T & {isOptimistic?: boolean} ``` ### LikeACart * lines ```ts { nodes: unknown[]; } ``` ```ts { lines: { nodes: Array; }; } ``` ### Examples * #### Example code ##### Description I am the default example ##### JavaScript ```jsx import {Link} from 'react-router'; import {CartForm, useOptimisticCart} from '@shopify/hydrogen'; // Root loader returns the cart data export async function loader({context}) { return { cart: context.cart.get(), }; } // The cart component renders each line item in the cart. export function Cart({cart}) { // `useOptimisticCart` adds optimistic line items to the cart. // These line items are displayed in the cart until the server responds. const optimisticCart = useOptimisticCart(cart); if (!optimisticCart?.lines?.nodes?.length) return

Nothing in cart

; return optimisticCart.lines.nodes.map((line) => (
{line.merchandise.product.title} {/* Each line item has an `isOptimistic` property. Optimistic line items should have actions disabled */}
)); } ``` ##### TypeScript ```tsx import {type LoaderFunctionArgs} from '@shopify/remix-oxygen'; import {Link} from 'react-router'; import {CartForm, useOptimisticCart} from '@shopify/hydrogen'; import type {Cart} from '@shopify/hydrogen/storefront-api-types'; // Root loader returns the cart data export async function loader({context}: LoaderFunctionArgs) { return { cart: context.cart.get(), }; } // The cart component renders each line item in the cart. export function Cart({cart: originalCart}: {cart: Cart}) { // `useOptimisticCart` adds optimistic line items to the cart. // These line items are displayed in the cart until the server responds. const cart = useOptimisticCart(originalCart); if (!cart?.lines?.nodes?.length) return

Nothing in cart

; return cart.lines.nodes.map((line) => (
{line.merchandise.product.title} {/* Each line item has an `isOptimistic` property. Optimistic line items should have actions disabled */}
)); } ``` ## Related [![](https://shopify.dev/images/icons/32/pickaxe-1.png)![](https://shopify.dev/images/icons/32/pickaxe-1-dark.png)](https://shopify.dev/docs/api/hydrogen/components/cartform) [CartForm](https://shopify.dev/docs/api/hydrogen/components/cartform)