diff --git a/examples/blog/src/layouts/BlogPost.astro b/examples/blog/src/layouts/BlogPost.astro
index 67f297444..4baf8e972 100644
--- a/examples/blog/src/layouts/BlogPost.astro
+++ b/examples/blog/src/layouts/BlogPost.astro
@@ -40,11 +40,13 @@ const {
{heroImage && }
{title}
{pubDate && }
- {updatedDate && (
-
- Last updated on
-
- )}
+ {
+ updatedDate && (
+
+ Last updated on
+
+ )
+ }
diff --git a/examples/blog/src/pages/blog.astro b/examples/blog/src/pages/blog.astro
index c50cc0528..cedf505b0 100644
--- a/examples/blog/src/pages/blog.astro
+++ b/examples/blog/src/pages/blog.astro
@@ -37,18 +37,20 @@ const posts = (await Astro.glob('./blog/*.{md,mdx}')).sort(
- {posts.map((post) => (
- -
-
- {post.frontmatter.title}
-
- ))}
+ {
+ posts.map((post) => (
+ -
+
+ {post.frontmatter.title}
+
+ ))
+ }
diff --git a/examples/docs/src/components/Footer/AvatarList.astro b/examples/docs/src/components/Footer/AvatarList.astro
index 5926936d6..b75589f5a 100644
--- a/examples/docs/src/components/Footer/AvatarList.astro
+++ b/examples/docs/src/components/Footer/AvatarList.astro
@@ -72,27 +72,31 @@ const additionalContributors = unique.length - recentContributors.length; // lis
diff --git a/examples/docs/src/components/HeadCommon.astro b/examples/docs/src/components/HeadCommon.astro
index 3551e5489..d77e4a90c 100644
--- a/examples/docs/src/components/HeadCommon.astro
+++ b/examples/docs/src/components/HeadCommon.astro
@@ -21,9 +21,7 @@ import '../styles/index.css';
/>
-
+
+