diff options
Diffstat (limited to 'src/components/ProductCard.js')
| -rw-r--r-- | src/components/ProductCard.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProductCard.js b/src/components/ProductCard.js index 49bba235..77f902e0 100644 --- a/src/components/ProductCard.js +++ b/src/components/ProductCard.js @@ -15,7 +15,7 @@ export default function ProductCard({ data }) { </Link> <div className="product-card__description"> <div> - {typeof product.manufacture.name !== undefined ? ( + {typeof product.manufacture.name !== "undefined" ? ( <a href={'/shop/brands/' + createSlug(product.manufacture.name, product.manufacture.id)} className="product-card__brand">{product.manufacture.name}</a> ) : ( <span className="product-card__brand">-</span> |
