From 7406eeff14cb02ea730d19e5d7859582ab178071 Mon Sep 17 00:00:00 2001 From: Gala Date: Thu, 11 Aug 2022 14:11:57 +0200 Subject: [PATCH] ui top bar --- nym-wallet/src/components/Accounts/AccountAvatar.tsx | 2 +- nym-wallet/src/components/Accounts/AccountOverview.tsx | 2 +- nym-wallet/src/components/NetworkSelector.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nym-wallet/src/components/Accounts/AccountAvatar.tsx b/nym-wallet/src/components/Accounts/AccountAvatar.tsx index 9335c1a743..c5ed939f2d 100644 --- a/nym-wallet/src/components/Accounts/AccountAvatar.tsx +++ b/nym-wallet/src/components/Accounts/AccountAvatar.tsx @@ -4,7 +4,7 @@ import stc from 'string-to-color'; import { TAccount } from 'src/types'; export const AccountAvatar = ({ name, small }: { name: TAccount['name']; small?: boolean }) => ( - + {name?.split('')[0]} diff --git a/nym-wallet/src/components/Accounts/AccountOverview.tsx b/nym-wallet/src/components/Accounts/AccountOverview.tsx index 5df9cdf2ed..95c3245ae3 100644 --- a/nym-wallet/src/components/Accounts/AccountOverview.tsx +++ b/nym-wallet/src/components/Accounts/AccountOverview.tsx @@ -6,7 +6,7 @@ import { AccountAvatar } from './AccountAvatar'; export const AccountOverview = ({ account, onClick }: { account: AccountEntry; onClick: () => void }) => (