diff --git a/src/components/AppLayout/AsideLayout.astro b/src/components/AppLayout/AsideLayout.astro index 9c5403f..170d2f9 100644 --- a/src/components/AppLayout/AsideLayout.astro +++ b/src/components/AppLayout/AsideLayout.astro @@ -22,27 +22,34 @@ default slot interface Props { reducedAsideWidth?: boolean; - withAside?: boolean | undefined; } -const { reducedAsideWidth = false, withAside = true } = Astro.props; +const { reducedAsideWidth = false } = Astro.props; ---