diff --git a/package-lock.json b/package-lock.json index 732f14e982..31babe95d8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "audius-dapp", - "version": "0.21.28", + "version": "0.22.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4148799b79..c7182f3eb4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Audius", "description": "The Audius decentralized application", "author": "Audius", - "version": "0.21.28", + "version": "0.22.0", "private": true, "dependencies": { "@audius/libs": "^1.0.9", diff --git a/src/components/track/mobile/TrackTile.tsx b/src/components/track/mobile/TrackTile.tsx index 4f7145c838..c6b46f57e9 100644 --- a/src/components/track/mobile/TrackTile.tsx +++ b/src/components/track/mobile/TrackTile.tsx @@ -42,6 +42,7 @@ type ExtraProps = { } const formatListenCount = (listenCount?: number) => { + if (!listenCount) return null const suffix = listenCount === 1 ? 'Play' : 'Plays' return `${formatCount(listenCount)} ${suffix}` }