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}` }