From ff9e60a7fce0f642dfb8a1ee0042f0d3da848411 Mon Sep 17 00:00:00 2001
From: Emile Bangma <github@emilebangma.com>
Date: Tue, 17 Dec 2024 18:07:00 +0000
Subject: [PATCH] fix(search): restore mobile search view (#1576)

---
 quartz/components/types.ts |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/quartz/components/types.ts b/quartz/components/types.ts
index fd9574f..a6b90d3 100644
--- a/quartz/components/types.ts
+++ b/quartz/components/types.ts
@@ -3,13 +3,15 @@
 import { QuartzPluginData } from "../plugins/vfile"
 import { GlobalConfiguration } from "../cfg"
 import { Node } from "hast"
+import { BuildCtx } from "../util/ctx"
 
 export type QuartzComponentProps = {
+  ctx: BuildCtx
   externalResources: StaticResources
   fileData: QuartzPluginData
   cfg: GlobalConfiguration
   children: (QuartzComponent | JSX.Element)[]
-  tree: Node<QuartzPluginData>
+  tree: Node
   allFiles: QuartzPluginData[]
   displayClass?: "mobile-only" | "desktop-only"
 } & JSX.IntrinsicAttributes & {

--
Gitblit v1.10.0