diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-02-20 16:30:43 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-02-20 16:30:43 +0700 |
| commit | 30da2d088793cabfb3c5b21d4560df53187e7047 (patch) | |
| tree | 75afb81b52dd078d34d808aa9ce9cfbf4c7ca975 /src-migrate/modules/cart/components/ItemPromo.tsx | |
| parent | 055bf8322dce7b7fba1b2e1d6176946067ff5bbe (diff) | |
Fix item url in cart item
Diffstat (limited to 'src-migrate/modules/cart/components/ItemPromo.tsx')
| -rw-r--r-- | src-migrate/modules/cart/components/ItemPromo.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-migrate/modules/cart/components/ItemPromo.tsx b/src-migrate/modules/cart/components/ItemPromo.tsx index d355c82a..878e17ac 100644 --- a/src-migrate/modules/cart/components/ItemPromo.tsx +++ b/src-migrate/modules/cart/components/ItemPromo.tsx @@ -13,12 +13,12 @@ type Props = { const CartItemPromo = ({ product }: Props) => { return ( <div key={product.id} className={style.wrapper}> - <Link href={createSlug('/shop/product/', product.name, product.id.toString())} className={style.imageWrapper}> + <Link href={createSlug('/shop/product/', product.parent.name, product.parent.id.toString())} className={style.imageWrapper}> {product?.image && <Image src={product.image} alt={product.name} width={128} height={128} className={style.image} />} </Link> <div className={style.details}> - <Link href={createSlug('/shop/product/', product.name, product.id.toString())} className={style.name}> + <Link href={createSlug('/shop/product/', product.parent.name, product.parent.id.toString())} className={style.name}> {product.display_name} </Link> |
