diff --git a/docs/content/modules/carts-and-checkout/storefront/implement-checkout-flow.mdx b/docs/content/modules/carts-and-checkout/storefront/implement-checkout-flow.mdx index fd14808a33..c274112447 100644 --- a/docs/content/modules/carts-and-checkout/storefront/implement-checkout-flow.mdx +++ b/docs/content/modules/carts-and-checkout/storefront/implement-checkout-flow.mdx @@ -560,8 +560,8 @@ const Cart = () => { const { completeCheckout } = useCart() // ... - const handleStartCheckout = () => { - startCheckout.mutate() + const handleCompleteCheckout = () => { + completeCheckout.mutate() } // ...