From 8b80e0fc6dc5f0c6188f35cc6805e014f3d20175 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 26 Jun 2024 09:13:01 +0800 Subject: [PATCH] Dont provide search base anymore as thats acheived by the folder --- packages/web/components/templates/library/LibraryContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/components/templates/library/LibraryContainer.tsx b/packages/web/components/templates/library/LibraryContainer.tsx index 8599ec8da..e9f0128c7 100644 --- a/packages/web/components/templates/library/LibraryContainer.tsx +++ b/packages/web/components/templates/library/LibraryContainer.tsx @@ -150,7 +150,7 @@ export function LibraryContainer(props: LibraryContainerProps): JSX.Element { useEffect(() => { if (!router.isReady) return const q = router.query['q'] - let qs = 'in:inbox' // Default to in:inbox search term. + let qs = '' if (q && typeof q === 'string') { qs = q }