diff --git a/src/stores/transaction.js b/src/stores/transaction.js index d0fb614b..e13e96e6 100644 --- a/src/stores/transaction.js +++ b/src/stores/transaction.js @@ -649,6 +649,8 @@ export const useTransactionsStore = defineStore('transactions', { if (isNumber(exchangedNewValue)) { newValue = Math.floor(exchangedNewValue); newValue = getAmountWithDecimalNumberCount(newValue, decimalNumberCount); + } else { + return; } }