From e4823e83d020db514dabad46d20fcb140efdf10e Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Tue, 7 May 2024 12:43:37 -0300 Subject: [PATCH] fix: useUnitMultiplier as optional (#2303) ## What's the purpose of this pull request? ## How it works? ## How to test it? ### Starters Deploy Preview ## References --- packages/core/src/components/cart/CartItem/CartItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/cart/CartItem/CartItem.tsx b/packages/core/src/components/cart/CartItem/CartItem.tsx index 6cfb9b0561..900bfab235 100644 --- a/packages/core/src/components/cart/CartItem/CartItem.tsx +++ b/packages/core/src/components/cart/CartItem/CartItem.tsx @@ -62,7 +62,7 @@ function useCartItemEvent() { interface Props { item: ICartItem - useUnitMultiplier: boolean + useUnitMultiplier?: boolean } function CartItem({ item, useUnitMultiplier = false }: Props) {