diff --git a/src/background/controller/wallet.ts b/src/background/controller/wallet.ts index 354d9a06..7cb2c27f 100644 --- a/src/background/controller/wallet.ts +++ b/src/background/controller/wallet.ts @@ -1595,18 +1595,18 @@ export class WalletController extends BaseController { transformedArray = [ { id: 0, - name: 'flow', + name: 'Koala', chain_id: network, - icon: 'placeholder', - color: 'placeholder', + icon: '🐨', + color: '#fff', blockchain: [ { id: 0, name: 'Flow', chain_id: network, - address: '0x00000000', + address: '', coins: ['flow'], - icon: '', + icon: '🐨', }, ], }, diff --git a/src/ui/views/Wallet/Coinlist.tsx b/src/ui/views/Wallet/Coinlist.tsx index a09153a8..ae657c58 100644 --- a/src/ui/views/Wallet/Coinlist.tsx +++ b/src/ui/views/Wallet/Coinlist.tsx @@ -115,20 +115,21 @@ const CoinList = ({ data, ableFt, isActive, childType, coinLoading }) => { {props.change === null ? '-' : '$'} {props.price} - - = 0 ? 'text.increase' : 'text.decrease', - }} - > - {props.change === null ? '' : props.change >= 0 ? '+' : ''} - {props.change} - {props.change !== null ? '%' : ''} - + {props.change !== 0 && ( + = 0 ? 'text.increase' : 'text.decrease', + }} + > + {props.change === null ? '' : props.change >= 0 ? '+' : ''} + {props.change} + {props.change !== null ? '%' : ''} + + )} ) : (