We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 403dc97 + 4f539d4 commit e13227eCopy full SHA for e13227e
src/extension/ui/src/components/tile/Bottom.tsx
@@ -54,7 +54,7 @@ const Bottom = ({ item }: BottomProps) => {
54
export default Bottom;
55
56
function pluralize(noun: string, count: number): string {
57
- return Math.abs(count) === 1 ? noun : `${noun}s`;
+ return Math.abs(count) <= 1 ? noun : `${noun}s`;
58
}
59
60
const StyledSVG = styled(SVG)((props) => {
0 commit comments