diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2024-08-03 06:34:34 +0000 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2024-08-03 06:34:34 +0000 |
| commit | 39b456ab02458048e56bdda8f608cd1819532a3a (patch) | |
| tree | ae0d57dce47ecf7d791d0b621b5da07b6c529f78 /src-migrate/modules/cart/components/ItemAction.tsx | |
| parent | d8510399c21b2cf4bf606441397a0142bc265a94 (diff) | |
| parent | 865f509a8b45c6db195661f35417623572d33cea (diff) | |
Merged in Feature/iman-unchek-cart (pull request #210)
Feature/iman unchek cart
Diffstat (limited to 'src-migrate/modules/cart/components/ItemAction.tsx')
| -rw-r--r-- | src-migrate/modules/cart/components/ItemAction.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src-migrate/modules/cart/components/ItemAction.tsx b/src-migrate/modules/cart/components/ItemAction.tsx index e73d507b..e5e7f314 100644 --- a/src-migrate/modules/cart/components/ItemAction.tsx +++ b/src-migrate/modules/cart/components/ItemAction.tsx @@ -11,6 +11,7 @@ import { deleteUserCart, upsertUserCart } from '~/services/cart' import { useDebounce } from 'usehooks-ts' import { useCartStore } from '../stores/useCartStore' +import { useProductCartContext } from '@/contexts/ProductCartContext' type Props = { @@ -19,7 +20,7 @@ type Props = { const CartItemAction = ({ item }: Props) => { const auth = getAuth() - + const { setRefreshCart } = useProductCartContext() const [isLoadDelete, setIsLoadDelete] = useState<boolean>(false) const [isLoadQuantity, setIsLoadQuantity] = useState<boolean>(false) @@ -36,6 +37,7 @@ const CartItemAction = ({ item }: Props) => { await deleteUserCart(auth.id, [item.cart_id]) await loadCart(auth.id) setIsLoadDelete(false) + setRefreshCart(true) } const decreaseQty = () => { setQuantity((quantity) => quantity -= 1) } |
