From 2acc36cad8297ca54f33e8c274482ec0c1abf27c Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Fri, 19 Jun 2026 13:24:43 -0700 Subject: [PATCH] Refine sidebar filter empty state copy --- apps/yaak-client/components/Sidebar.tsx | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/apps/yaak-client/components/Sidebar.tsx b/apps/yaak-client/components/Sidebar.tsx index bce4b367..3ef7e6eb 100644 --- a/apps/yaak-client/components/Sidebar.tsx +++ b/apps/yaak-client/components/Sidebar.tsx @@ -670,7 +670,7 @@ function Sidebar({ className }: { className?: string }) { className="!h-auto py-3 px-3 !text-text-subtle text-sm leading-relaxed text-center" >
- Found matches by{" "} + No results, but found matches by{" "} {emptyFilterSuggestions?.map((suggestion, i) => ( {i > 0 && " or "} @@ -688,12 +688,17 @@ function Sidebar({ className }: { className?: string }) {
) : ( -
- No results for{" "} - - {filterText.text} - -
+ +
+ No results for{" "} + + {filterText.text} + +
+
)} ) : (