diff --git a/frontend/components/dashboard/dashboard-header.tsx b/frontend/components/dashboard/dashboard-header.tsx index 266a76d..49ec697 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 && ( - Recent Pools - - {recentPools.map((pool) => ( - - - {pool.name} - - - {pool.type} - - - {formatRelativeTime(new Date(pool.visitedAt))} - - - - - ))} + Recent Pools + + {recentPools.length === 0 ? ( +
+ No recent pools yet +
+ ) : ( + recentPools.map((pool) => ( + + + {pool.name} + + + {pool.type} + + + {formatRelativeTime(new Date(pool.visitedAt))} + + + + + )) + )}
)}