Skip to content

Commit 9027901

Browse files
committed
fix: fixed commented required gas message
1 parent d307f3c commit 9027901

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/views/Send/Send.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
>
99
{{ $t('common.send') }}
1010
</NavBar>
11-
<!-- <InfoNotification v-if="nativeAssetRequired">
11+
<InfoNotification v-if="nativeAssetRequired">
1212
<EthRequiredMessage :account-id="account.id" :action="'send'" />
13-
</InfoNotification> -->
14-
<InfoNotification v-if="!isValidSendAmount">
13+
</InfoNotification>
14+
<InfoNotification v-else-if="!isValidSendAmount">
1515
{{ `${$t('common.minSendAmount')} ${minimumAssetSendAmount} ${asset}` }}
1616
</InfoNotification>
1717
<div class="wrapper form">
@@ -289,7 +289,7 @@ import { UNSResolver } from '@liquality/wallet-core/dist/src/nameResolvers/uns'
289289
import { errorToLiqualityErrorString } from '@liquality/error-parser/dist/src/utils'
290290
import { reportLiqualityError } from '@liquality/error-parser/dist/src/reporters/index'
291291
import InfoNotification from '@/components/InfoNotification'
292-
// import EthRequiredMessage from '@/components/EthRequiredMessage'
292+
import EthRequiredMessage from '@/components/EthRequiredMessage'
293293
294294
export default {
295295
components: {
@@ -303,7 +303,7 @@ export default {
303303
CustomFees,
304304
CustomFeesEIP1559,
305305
InfoNotification,
306-
// EthRequiredMessage
306+
EthRequiredMessage
307307
},
308308
mixins: [ledgerConnectMixin],
309309
data() {
@@ -364,7 +364,7 @@ export default {
364364
},
365365
amount: {
366366
get() {
367-
return this.stateAmount // crypto value
367+
return this.stateAmount
368368
},
369369
set(newValue) {
370370
this.updateSendAmount(newValue)

0 commit comments

Comments
 (0)