diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b379d804..2866fbc3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed + +- Issue with brand link on `ProductBrand` component. + ## [3.175.0] - 2024-08-15 ### Added diff --git a/react/components/ProductBrand/ProductBrandName.tsx b/react/components/ProductBrand/ProductBrandName.tsx index a601373c7..cc8b3ca43 100644 --- a/react/components/ProductBrand/ProductBrandName.tsx +++ b/react/components/ProductBrand/ProductBrandName.tsx @@ -14,7 +14,7 @@ function ProductBrandName({ brandName, withLink, slug }: Props) { const { handles } = useProductBrandCssHandles() if (withLink && slug) { - const nameLink = `/${slug}/b` + const nameLink = `/${slug}` return (