Skip to content

Commit 7a5e0c8

Browse files
fix: change origin_country to material in product info (#93)
1 parent 7fda33f commit 7a5e0c8

File tree

1 file changed

+1
-1
lines changed
  • src/modules/products/components/product-tabs

1 file changed

+1
-1
lines changed

src/modules/products/components/product-tabs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const ProductInfoTab = ({ product }: ProductTabsProps) => {
6363
<div className="flex flex-col gap-y-4">
6464
<div>
6565
<span className="font-semibold">Material</span>
66-
<p>{product.origin_country ? product.origin_country : "-"}</p>
66+
<p>{product.material ? product.material : "-"}</p>
6767
</div>
6868
<div>
6969
<span className="font-semibold">Country of origin</span>

0 commit comments

Comments
 (0)