From 83288f6cb6e855490ccc7255e71c16283ff63f98 Mon Sep 17 00:00:00 2001 From: Dylan Jeffers Date: Thu, 2 Oct 2025 16:11:14 -0700 Subject: [PATCH] [PE-7050] Add dollar sign to ticker --- .../ArtistCoinsExploreScreen.tsx | 2 +- .../components/BalanceCard.tsx | 30 ++++++++++++------- .../CoinLeaderboardScreen.tsx | 2 +- 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/packages/mobile/src/screens/artist-coins-explore-screen/ArtistCoinsExploreScreen.tsx b/packages/mobile/src/screens/artist-coins-explore-screen/ArtistCoinsExploreScreen.tsx index 9a52ac65120..aaf43fc48bd 100644 --- a/packages/mobile/src/screens/artist-coins-explore-screen/ArtistCoinsExploreScreen.tsx +++ b/packages/mobile/src/screens/artist-coins-explore-screen/ArtistCoinsExploreScreen.tsx @@ -52,7 +52,7 @@ const CoinRow = ({ coin, onPress }: CoinRowProps) => { {coin.name} - {coin.ticker} + ${coin.ticker} 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 a697f04895d..daff366c53c 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)}