Skip to content

Commit

Permalink
fix staking buttons label
Browse files Browse the repository at this point in the history
  • Loading branch information
voloshinskii committed Apr 12, 2024
1 parent 335f6ce commit ae3bc69
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,13 @@ export const StakingPoolDetails: FC<Props> = (props) => {
disabled: isWatchOnly || !isImplemeted,
onPress: handleTopUpPress,
icon: 'ic-plus-outline-28',
title: t('wallet.send_btn'),
title: t('staking.top_up'),
},
{
id: 'withdraw',
onPress: handleWithdrawalPress,
icon: 'ic-minus-outline-28',
title: t('wallet.receive_btn'),
title: t('staking.withdraw'),
disabled: isWatchOnly || !isImplemeted || isWithdrawDisabled,
},
]}
Expand Down

0 comments on commit ae3bc69

Please sign in to comment.