Skip to content

Commit

Permalink
fix: clarify withdraw and deposit message (#654)
Browse files Browse the repository at this point in the history
* fix: clear withdraw/deposit message

* fix: withdraw/deposit message shorten
  • Loading branch information
tamas6 authored Jul 17, 2024
1 parent a47de8f commit b4ebfc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/containers/DepositModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function DepositModal(): ReactElement {
<WithdrawDepositModal
successMessage="Successful deposit."
errorMessage="Error with depositing"
dialogMessage="Specify the amount of xBZZ you would like to deposit to your node."
dialogMessage="Amount of xBZZ to deposit to the checkbook, from your node."
label="Deposit"
icon={<Download size="1rem" />}
min={new BigNumber(0)}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/WithdrawModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function WithdrawModal(): ReactElement {
<WithdrawDepositModal
successMessage="Successful withdrawal."
errorMessage="Error with withdrawing."
dialogMessage="Specify the amount of xBZZ you would like to withdraw from your node."
dialogMessage="Amount of xBZZ to withdraw from the checkbook to your node."
label="Withdraw"
icon={<Upload size="1rem" />}
min={new BigNumber(0)}
Expand Down

0 comments on commit b4ebfc7

Please sign in to comment.