From a6de2d4fade7dcdd2912717c8d3fc4a23504e8cb Mon Sep 17 00:00:00 2001 From: delucis Date: Thu, 7 Sep 2023 11:15:15 +0000 Subject: [ci] format --- packages/starlight/layout/Page.astro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/starlight/layout/Page.astro b/packages/starlight/layout/Page.astro index 5dfcbe35..0999122d 100644 --- a/packages/starlight/layout/Page.astro +++ b/packages/starlight/layout/Page.astro @@ -45,7 +45,8 @@ const tocConfig = !hasSidebar : config.tableOfContents; const hasToC = Boolean(tocConfig); const hasHero = Boolean(entry.data.hero); -const pagefindEnabled = entry.slug !== '404' && !entry.slug.endsWith('/404') && entry.data.pagefind !== false; +const pagefindEnabled = + entry.slug !== '404' && !entry.slug.endsWith('/404') && entry.data.pagefind !== false; ---