From a0e7d979674ef6f583aeef14fccbf80fc59a7b32 Mon Sep 17 00:00:00 2001 From: DrMint <29893320+DrMint@users.noreply.github.com> Date: Thu, 11 Jul 2024 20:44:17 +0200 Subject: [PATCH] Fixed recorder pages --- src/components/AppLayout/AsideLayout.astro | 29 ++++++++++++++-------- src/pages/[locale]/recorders/[id].astro | 20 ++++++--------- 2 files changed, 25 insertions(+), 24 deletions(-) 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; ---