From b1abb402bb0cbf85dbd7359fd042c405e92c2c7d Mon Sep 17 00:00:00 2001 From: naninu123 Date: Thu, 23 Jul 2026 18:33:45 +0800 Subject: [PATCH] feat(holdings): add empty state UI when wallet has no creator keys --- src/pages/LandingPage.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx index 39d94bb6..fcd4ed3d 100644 --- a/src/pages/LandingPage.tsx +++ b/src/pages/LandingPage.tsx @@ -1184,6 +1184,37 @@ function LandingPage() { {isLoading ? ( + ) : heldKeyPositions.filter( + position => position.quantity && position.quantity > 0 + ).length === 0 ? ( +
+
+
+ +
+

+ No creator keys yet +

+

+ This wallet doesn’t hold any creator keys right now. + Browse creators and secure your first key. +

+ + Browse creators + +
) : (
{heldKeyPositions