Skip to content

Commit

Permalink
feat(ProductTitle): change default value of reviewsCountText
Browse files Browse the repository at this point in the history
  • Loading branch information
artursantiago committed Jan 30, 2025
1 parent b00bbbc commit 88b85e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface ProductTitleProps
*/
noReviewsText?: string
/**
* Default text for "X Reviews".
* Default text for "X reviews".
*/
reviewsCountText?: string
}
Expand All @@ -59,7 +59,7 @@ const ProductTitle = forwardRef<HTMLElement, ProductTitleProps>(
reviewsCount,
reviewsSectionId,
noReviewsText = 'No reviews yet',
reviewsCountText = 'Reviews',
reviewsCountText = 'reviews',
...otherProps
},
ref
Expand Down

0 comments on commit 88b85e9

Please sign in to comment.