diff --git a/frontend/src/components/GddSend/TransactionConfirmationLink.vue b/frontend/src/components/GddSend/TransactionConfirmationLink.vue index 8e6856e00..78903deda 100644 --- a/frontend/src/components/GddSend/TransactionConfirmationLink.vue +++ b/frontend/src/components/GddSend/TransactionConfirmationLink.vue @@ -28,7 +28,7 @@ {{ $t('gdd_per_link.decay-14-day') }} - {{ $t('math.aprox') }} {{ (amount * 0.028 * -1) | GDD }} + {{ $t('math.aprox') }} {{ (amount * -0.028) | GDD }} @@ -64,7 +64,7 @@ export default { return this.balance - this.amount * 1.028 }, disabled() { - if (this.TotalBalance < 0) { + if (this.totalBalance < 0) { return true } return this.loading