From a01beb841a3009c189a4f5ad2f58c4cb6bea0b77 Mon Sep 17 00:00:00 2001 From: secondl1ght <85003930+secondl1ght@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:41:02 -0600 Subject: [PATCH] style: minor dash updates (#93) --- src/views/dashboard/Dashboard.tsx | 2 +- src/views/dashboard/RecentTransactions.tsx | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/dashboard/Dashboard.tsx b/src/views/dashboard/Dashboard.tsx index 5284f85..29942cc 100644 --- a/src/views/dashboard/Dashboard.tsx +++ b/src/views/dashboard/Dashboard.tsx @@ -100,7 +100,7 @@ export const Dashboard = () => { }, [data, loading, error, value, push, setValue]); return ( -
+
{checkingId ? ( ) : view === 'default' ? ( diff --git a/src/views/dashboard/RecentTransactions.tsx b/src/views/dashboard/RecentTransactions.tsx index 193662a..4354947 100644 --- a/src/views/dashboard/RecentTransactions.tsx +++ b/src/views/dashboard/RecentTransactions.tsx @@ -98,7 +98,9 @@ export const RecentTransactions: FC<{ id: string }> = ({ id }) => { /> )) ) : ( -

{t('Wallet.no-results')}

+

+ {t('Wallet.no-results')} +

)} )}