diff --git a/apps/wallet/src/ui/app/components/coin-icon/index.tsx b/apps/wallet/src/ui/app/components/coin-icon/index.tsx index 6e2b4e29f54..f3fe96fe135 100644 --- a/apps/wallet/src/ui/app/components/coin-icon/index.tsx +++ b/apps/wallet/src/ui/app/components/coin-icon/index.tsx @@ -14,15 +14,13 @@ interface NonIotaCoinProps { function NonIotaCoin({ coinType }: NonIotaCoinProps) { const { data: coinMeta } = useCoinMetadata(coinType); return ( - <> -
- -
- +
+ +
); } diff --git a/apps/wallet/src/ui/app/pages/home/tokens/TokensDetails.tsx b/apps/wallet/src/ui/app/pages/home/tokens/TokensDetails.tsx index aede08cdda3..3b93bdcf5a4 100644 --- a/apps/wallet/src/ui/app/pages/home/tokens/TokensDetails.tsx +++ b/apps/wallet/src/ui/app/pages/home/tokens/TokensDetails.tsx @@ -68,10 +68,10 @@ function PinButton({ isPinned, onClick }: PinButtonProps) { onClick(); }} > - {!isPinned ? ( - - ) : ( + {isPinned ? ( + ) : ( + )} );