Skip to content

Commit

Permalink
chore: update text tips
Browse files Browse the repository at this point in the history
  • Loading branch information
AricRedemption committed May 14, 2024
1 parent 1d8c901 commit 21bd8f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/pages/wallet/MintRune.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const popConfirm = async () => {
if (!amount.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input amount.',
message: 'Please enter the amount.',
}
isOpenResultModal.value = true
return
Expand All @@ -64,7 +64,7 @@ const popConfirm = async () => {
if (asset.value!.chain === 'btc' && !currentRateFee.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input current rate fee.',
message: 'Please enter the current fee rate.',
}
isOpenResultModal.value = true
return
Expand Down
6 changes: 3 additions & 3 deletions src/pages/wallet/Send.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,23 +83,23 @@ const popConfirm = async () => {
if (!amount.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input amount.',
message: 'Please enter the amount.',
}
isOpenResultModal.value = true
return
}
if (asset.value.chain === 'btc' && !currentRateFee.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input current rate fee.',
message: 'Please enter the current fee rate.',
}
isOpenResultModal.value = true
return
}
if (!amountInSats.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input amount.',
message: 'Please enter the amount.',
}
isOpenResultModal.value = true
return
Expand Down
4 changes: 2 additions & 2 deletions src/pages/wallet/SendRune.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const popConfirm = async () => {
if (!amount.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input amount.',
message: 'Please enter the amount.',
}
isOpenResultModal.value = true
return
Expand All @@ -81,7 +81,7 @@ const popConfirm = async () => {
if (asset.value!.chain === 'btc' && !currentRateFee.value) {
transactionResult.value = {
status: 'warning',
message: 'Please input current rate fee.',
message: 'Please enter the current fee rate.',
}
isOpenResultModal.value = true
return
Expand Down

0 comments on commit 21bd8f1

Please sign in to comment.