From 1818ea192599aa76ae67e88b1162de2f57965e8e Mon Sep 17 00:00:00 2001 From: devjaja Date: Sun, 19 Jul 2026 00:07:24 +0100 Subject: [PATCH] fix(dashboard): add empty state to Recent Pools dropdown Shows a 'No recent pools yet' message when the Recent Pools list is empty, matching the pattern already used by the Notifications dropdown. Closes #106 --- .../components/dashboard/dashboard-header.tsx | 45 +++++++++++-------- 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/frontend/components/dashboard/dashboard-header.tsx b/frontend/components/dashboard/dashboard-header.tsx index 266a76d..1c84b9e 100644 --- a/frontend/components/dashboard/dashboard-header.tsx +++ b/frontend/components/dashboard/dashboard-header.tsx @@ -165,7 +165,7 @@ export function DashboardHeader() { )} - {address && recentPools.length > 0 && ( + {address && (