diff --git a/packages/mobile/src/screens/coin-details-screen/components/BalanceCard.tsx b/packages/mobile/src/screens/coin-details-screen/components/BalanceCard.tsx index 27d25d72502..550ee4f7a7d 100644 --- a/packages/mobile/src/screens/coin-details-screen/components/BalanceCard.tsx +++ b/packages/mobile/src/screens/coin-details-screen/components/BalanceCard.tsx @@ -19,27 +19,34 @@ import { useNavigation } from 'app/hooks/useNavigation' const messages = coinDetailsMessages.balance type BalanceStateProps = { - title: string + ticker: string logoURI?: string onBuy?: () => void onReceive?: () => void onSend?: () => void + coinName: string } const ZeroBalanceState = ({ - title, + ticker, logoURI, onBuy, - onReceive + onReceive, + coinName }: BalanceStateProps) => { const isManagerMode = useIsManagedAccount() return ( - - ${title} - + + + {coinName} + + + ${ticker} + + {messages.becomeAMember} - {messages.hintDescription(title)} + {messages.hintDescription(ticker)}