diff options
author | Chris Swithinbank | 2023-05-30 22:05:22 +0200 |
---|---|---|
committer | Chris Swithinbank | 2023-05-30 22:05:22 +0200 |
commit | fe0a9b3fb12db06ddcbc01eae629f5837409ada3 (patch) | |
tree | 3dce93d626db67e0514eced8e80fc202d9bd2801 | |
parent | 2dff1819b156b94f5de376736e81934f819704bf (diff) | |
download | IT.starlight-fe0a9b3fb12db06ddcbc01eae629f5837409ada3.tar.gz IT.starlight-fe0a9b3fb12db06ddcbc01eae629f5837409ada3.tar.bz2 IT.starlight-fe0a9b3fb12db06ddcbc01eae629f5837409ada3.zip |
Fix missing component attribute in 404 route
Didn’t cause any issues but tidying up for correctness
-rw-r--r-- | packages/starlight/404.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/starlight/404.astro b/packages/starlight/404.astro index c5d21a3f..0a4efd08 100644 --- a/packages/starlight/404.astro +++ b/packages/starlight/404.astro @@ -32,7 +32,7 @@ const { lang = 'en', dir = 'ltr', locale } = config.defaultLocale || {}; <body> <ThemeProvider /> <SkipLink {locale} /> - <PageFrame {locale}> + <PageFrame {locale} hasSidebar={false}> <Header slot="header" {locale} /> <main> <MarkdownContent> |