diff --git a/packages/astro/components/Image.astro b/packages/astro/components/Image.astro index 8704d4cc77..aee198a602 100644 --- a/packages/astro/components/Image.astro +++ b/packages/astro/components/Image.astro @@ -31,7 +31,7 @@ if (image.srcSet.values.length > 0) { } if (import.meta.env.DEV) { - additionalAttributes['data-image-component'] = 'true'; + additionalAttributes['data-image-component'] = 'true'; } --- diff --git a/packages/astro/components/Picture.astro b/packages/astro/components/Picture.astro index 82a97af5da..b37b2d5451 100644 --- a/packages/astro/components/Picture.astro +++ b/packages/astro/components/Picture.astro @@ -63,7 +63,7 @@ if (fallbackImage.srcSet.values.length > 0) { } if (import.meta.env.DEV) { - imgAdditionalAttributes['data-image-component'] = 'true'; + imgAdditionalAttributes['data-image-component'] = 'true'; } ---