diff options
author | 2024-01-29 10:47:05 +0100 | |
---|---|---|
committer | 2024-01-29 17:47:05 +0800 | |
commit | f27f790b922247c168eb167394cea8dd4c3e3390 (patch) | |
tree | 5e672bd8ebde7989d142791a29086c07b41d5d27 | |
parent | 70fdf1a5c660057152c1ca111dcc89ceda5c8840 (diff) | |
download | astro-f27f790b922247c168eb167394cea8dd4c3e3390.tar.gz astro-f27f790b922247c168eb167394cea8dd4c3e3390.tar.zst astro-f27f790b922247c168eb167394cea8dd4c3e3390.zip |
remove unused prop in blog template (#9848)
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
-rw-r--r-- | examples/blog/src/pages/index.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/pages/index.astro b/examples/blog/src/pages/index.astro index 5113c8e8d..46975d8fb 100644 --- a/examples/blog/src/pages/index.astro +++ b/examples/blog/src/pages/index.astro @@ -11,7 +11,7 @@ import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; <BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} /> </head> <body> - <Header title={SITE_TITLE} /> + <Header /> <main> <h1>🧑🚀 Hello, Astronaut!</h1> <p> |