From 34668bd1cfbb5572e9e65bb36ff2e19fb6aca1d8 Mon Sep 17 00:00:00 2001 From: saml33 Date: Wed, 10 Jul 2024 22:01:45 +1000 Subject: [PATCH] empty state --- components/Positions.tsx | 2 +- components/TransactionHistory.tsx | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/components/Positions.tsx b/components/Positions.tsx index 53dfdff..59dec7a 100644 --- a/components/Positions.tsx +++ b/components/Positions.tsx @@ -87,7 +87,7 @@ const Positions = ({ ) : null }) ) : ( -
+
😑 Nothing to see here... diff --git a/components/TransactionHistory.tsx b/components/TransactionHistory.tsx index b744e11..8a69c9a 100644 --- a/components/TransactionHistory.tsx +++ b/components/TransactionHistory.tsx @@ -8,7 +8,7 @@ import SheenLoader from './shared/SheenLoader' const TransactionHistory = () => { const { history, isLoading, refetch } = useAccountHistory() return ( -
+
History may be delayed by a few minutes. @@ -40,7 +40,10 @@ const TransactionHistory = () => { )) ) : (
- No activity found... +
+ 😑 + No activity found... +
)}