summaryrefslogtreecommitdiff
path: root/src/lib/product/components/Product/ProductMobile.jsx
diff options
context:
space:
mode:
authorHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-03-29 11:14:10 +0700
committerHATEC\SPVDEV001 <tri.susilo@altama.co.id>2023-03-29 11:14:10 +0700
commitac230a35f325cc47e89fd5d635847536f2dd9b44 (patch)
tree140f183209ca2353de06fdeb3e7028b43ee28c40 /src/lib/product/components/Product/ProductMobile.jsx
parent5f8362bc9272af730a084b7cc1dda6537f7f8d40 (diff)
parentaa21c215d18d0a80e7f2979f9a18f5af7db02f8c (diff)
Merge branch 'master' of https://bitbucket.org/altafixco/next-indoteknik
Diffstat (limited to 'src/lib/product/components/Product/ProductMobile.jsx')
-rw-r--r--src/lib/product/components/Product/ProductMobile.jsx10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib/product/components/Product/ProductMobile.jsx b/src/lib/product/components/Product/ProductMobile.jsx
index 0df22026..e560639c 100644
--- a/src/lib/product/components/Product/ProductMobile.jsx
+++ b/src/lib/product/components/Product/ProductMobile.jsx
@@ -14,6 +14,7 @@ import { toast } from 'react-hot-toast'
import useVariantPrice from '@/lib/variant/hooks/useVariantPrice'
import PriceSkeleton from '@/core/components/elements/Skeleton/PriceSkeleton'
import useProductPrice from '../../hooks/useProductPrice'
+import { createSlug } from '@/core/utils/slug'
const ProductMobile = ({ product, wishlist, toggleWishlist }) => {
const router = useRouter()
@@ -79,7 +80,8 @@ const ProductMobile = ({ product, wishlist, toggleWishlist }) => {
if (!validAction()) return
updateItemCart({
productId: activeVariant.id,
- quantity
+ quantity,
+ selected: true
})
toast.success('Berhasil menambahkan ke keranjang')
}
@@ -106,7 +108,11 @@ const ProductMobile = ({ product, wishlist, toggleWishlist }) => {
<div className='p-4'>
<div className='flex items-end mb-2'>
{product.manufacture?.name ? (
- <Link href='/'>{product.manufacture?.name}</Link>
+ <Link
+ href={createSlug('/shop/brands/', product.manufacture?.name, product.manufacture?.id)}
+ >
+ {product.manufacture?.name}
+ </Link>
) : (
<div>-</div>
)}