From ad25845ba99baee96c62f28efc9f77bb09434f65 Mon Sep 17 00:00:00 2001
From: Korbs
Date: Wed, 23 Oct 2024 13:59:20 -0400
Subject: [PATCH] Update query property for layouts and components
---
source/src/layouts/Base.astro | 4 ++--
source/src/layouts/Search.astro | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/source/src/layouts/Base.astro b/source/src/layouts/Base.astro
index 6390f47..cb6dad6 100644
--- a/source/src/layouts/Base.astro
+++ b/source/src/layouts/Base.astro
@@ -1,6 +1,6 @@
---
// Properties
-const {Title, Query} = Astro.props
+const {Title, Query, QueryText} = Astro.props
// Components
import Head from "@components/global/Head.astro";
@@ -13,6 +13,6 @@ import '@styles/mobile.scss'
---
-
+
\ No newline at end of file
diff --git a/source/src/layouts/Search.astro b/source/src/layouts/Search.astro
index c7951c4..d626f3c 100644
--- a/source/src/layouts/Search.astro
+++ b/source/src/layouts/Search.astro
@@ -3,13 +3,13 @@
import Base from "./Base.astro"
// Properties
-const {Type, Title, Query} = Astro.props
+const {Type, Title, Query, QueryText} = Astro.props
// Components
import SearchMenu from "@components/global/SearchMenu.astro"
---
-
+