diff --git a/packages/ui-react/src/containers/ShelfList/ShelfList.tsx b/packages/ui-react/src/containers/ShelfList/ShelfList.tsx index bb16307fb..912b79889 100644 --- a/packages/ui-react/src/containers/ShelfList/ShelfList.tsx +++ b/packages/ui-react/src/containers/ShelfList/ShelfList.tsx @@ -75,7 +75,7 @@ const ShelfList = ({ rows }: Props) => { const posterAspect = parseAspectRatio(playlist.cardImageAspectRatio || playlist.shelfImageAspectRatio); const visibleTilesDelta = parseTilesDelta(posterAspect); - const translatedKey = custom?.[`title-${language}`]; + const translatedKey = custom?.[`title-${language}`] || (playlist?.[`title-${language}`] as string); const translatedTitle = translatedKey || title || playlist?.title; const isHero = custom?.layoutType === SHELF_LAYOUT_TYPE.hero && index === 0;