From 4f72cd4f2833c0f6db93cd5e2226e8684042fdf9 Mon Sep 17 00:00:00 2001 From: prototypa Date: Wed, 1 Feb 2023 16:53:41 -0500 Subject: [PATCH] Set an explicit width and height on image --- src/components/widgets/Steps.astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/widgets/Steps.astro b/src/components/widgets/Steps.astro index 865ff3b..c19f4b6 100644 --- a/src/components/widgets/Steps.astro +++ b/src/components/widgets/Steps.astro @@ -63,6 +63,8 @@ const { widths={[400, 768]} sizes="(max-width: 768px) 100vw, 432px" aspectRatio="432:768" + width={432} + height={768} {...image} /> ))