From 0e74d69aedf9b4c1630b5823e9b1cc1c5bd70290 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 7 May 2022 12:35:08 -0500 Subject: [PATCH] Fix old attribute reference --- src/components/video/poster.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/video/poster.astro b/src/components/video/poster.astro index 4f55ab2..d5c05c4 100644 --- a/src/components/video/poster.astro +++ b/src/components/video/poster.astro @@ -8,7 +8,7 @@ const images = getVideoImages( video ) --- - { Object.entries( images.srcset ).map( ([ key, source ]) => ( + { Object.entries( images.sources ).map( ([ key, source ]) => (