diff --git a/src/renderer/components/feature-carousel/index.tsx b/src/renderer/components/feature-carousel/index.tsx
index a0685883..01ed1b18 100644
--- a/src/renderer/components/feature-carousel/index.tsx
+++ b/src/renderer/components/feature-carousel/index.tsx
@@ -207,11 +207,14 @@ export const FeatureCarousel = ({ data }: FeatureCarouselProps) => {
))}
{currentItem?.releaseYear}
-
- {t('entity.trackWithCount', {
- count: currentItem?.songCount || 0,
- })}
-
+ {currentItem?.songCount !== null &&
+ currentItem?.songCount !== undefined && (
+
+ {t('entity.trackWithCount', {
+ count: currentItem?.songCount || 0,
+ })}
+
+ )}