@@ -45,7 +45,7 @@ const HomeView = ({
4545 transaction,
4646 nav,
4747} ) => {
48- const { balanceLabel , channelBalanceLabel, unitLabel } = store ;
48+ const { depositLabel , channelBalanceLabel, unitLabel } = store ;
4949 return (
5050 < Background image = "purple-gradient-bg" >
5151 < HomeHeader
@@ -56,7 +56,7 @@ const HomeView = ({
5656 < QrCodeSeparator goDeposit = { ( ) => nav . goDeposit ( ) } />
5757 < MainContent style = { styles . content } >
5858 < BalanceDisplay
59- balanceLabel = { balanceLabel }
59+ depositLabel = { depositLabel }
6060 channelBalanceLabel = { channelBalanceLabel }
6161 unitLabel = { unitLabel }
6262 toggleDisplayFiat = { ( ) => wallet . toggleDisplayFiat ( ) }
@@ -99,7 +99,7 @@ const balanceStyles = StyleSheet.create({
9999} ) ;
100100
101101const BalanceDisplay = ( {
102- balanceLabel ,
102+ depositLabel ,
103103 channelBalanceLabel,
104104 unitLabel,
105105 toggleDisplayFiat,
@@ -111,13 +111,13 @@ const BalanceDisplay = ({
111111 < BalanceLabelUnit > { unitLabel } </ BalanceLabelUnit >
112112 </ BalanceLabel >
113113 < H4Text style = { balanceStyles . smallLabel } > Pending Deposit</ H4Text >
114- < SmallBalanceLabel unit = { unitLabel } > { balanceLabel } </ SmallBalanceLabel >
114+ < SmallBalanceLabel unit = { unitLabel } > { depositLabel } </ SmallBalanceLabel >
115115 </ Button >
116116 </ View >
117117) ;
118118
119119BalanceDisplay . propTypes = {
120- balanceLabel : PropTypes . string . isRequired ,
120+ depositLabel : PropTypes . string . isRequired ,
121121 channelBalanceLabel : PropTypes . string . isRequired ,
122122 unitLabel : PropTypes . string ,
123123 toggleDisplayFiat : PropTypes . func . isRequired ,
0 commit comments