diff --git a/src/components/video-embed/index.tsx b/src/components/video-embed/index.tsx index 6e7d0c0ca5..f2f52cff44 100644 --- a/src/components/video-embed/index.tsx +++ b/src/components/video-embed/index.tsx @@ -42,7 +42,7 @@ function VideoEmbedPlaceholder({ imageUrl }) { top: '0', width: '100%', height: '100%', - backgroundImage: `url(${imageUrl})`, + ...(imageUrl && { backgroundImage: `url(${imageUrl})` }), backgroundSize: 'cover', backgroundPosition: 'center', cursor: 'pointer',