diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-08-13 14:39:08 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-08-13 14:39:08 +0700 |
| commit | e8745f729cb48a2cab96f8f216617240326f2018 (patch) | |
| tree | 0e6cfbffbc6611a8f56f7b44935a3ffd809ba383 /src-migrate | |
| parent | 4b74228b697ba5a04e8b8850d769a676070df4ca (diff) | |
<iman> add feature pickup service
Diffstat (limited to 'src-migrate')
| -rw-r--r-- | src-migrate/modules/cart/components/Item.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src-migrate/modules/cart/components/Item.tsx b/src-migrate/modules/cart/components/Item.tsx index 47893498..44ec4fd5 100644 --- a/src-migrate/modules/cart/components/Item.tsx +++ b/src-migrate/modules/cart/components/Item.tsx @@ -17,11 +17,11 @@ import CartItemSelect from './ItemSelect' type Props = { item: CartItemProps editable?: boolean + selfPicking?: boolean pilihSemuaCart?: boolean } -const CartItem = ({ item, editable = true,}: Props) => { - +const CartItem = ({ item, editable = true, selfPicking}: Props) => { return ( <div className={style.wrapper}> {item.cart_type === 'promotion' && ( @@ -53,6 +53,7 @@ const CartItem = ({ item, editable = true,}: Props) => { <CartItem.Image item={item} /> <div className={style.details}> + {/* disini */} <CartItem.Name item={item} /> <div className='mt-2 flex justify-between w-full'> |
