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 }