Disable sidebar filtering for now

This commit is contained in:
Gregory Schier
2025-10-29 15:30:18 -07:00
parent c6d9cb9c9e
commit 08f1bc4e65

View File

@@ -198,9 +198,10 @@ function Sidebar({ className }: { className?: string }) {
<aside
ref={wrapperRef}
aria-hidden={hidden ?? undefined}
className={classNames(className, 'h-full grid grid-rows-[auto_minmax(0,1fr)_auto]')}
className={classNames(className, 'h-full grid grid-rows-[minmax(0,1fr)_auto]')}
>
<div className="px-2 py-1.5 pb-0">
{/* TODO: Show the filter */}
<div className="px-2 py-1.5 pb-0 hidden">
{(tree.children?.length ?? 0) > 0 && (
<PlainInput
hideLabel