fix: minor fixes

This commit is contained in:
saicaca
2024-02-18 18:24:00 +08:00
committed by saica.go
parent af29b9160f
commit d68f26a74f
4 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ interface Props {
}
const { title, banner } = Astro.props
const isHomePage = pathsEqual(Astro.url.pathname, '/') || pathsEqual(Astro.url.pathname, '/page/1')
const isHomePage = pathsEqual(Astro.url.pathname, '/')
const enableBanner = siteConfig.banner.enable
---