diff --git a/src/js/controllers/amount.js b/src/js/controllers/amount.js index 83634db45..aad224372 100644 --- a/src/js/controllers/amount.js +++ b/src/js/controllers/amount.js @@ -165,7 +165,7 @@ angular.module('copayApp.controllers').controller('amountController', function($ }; $scope.removeDigit = function() { - $scope.amount = $scope.amount.slice(0, -1); + $scope.amount = ($scope.amount).toString().slice(0, -1); processAmount(); checkFontSize(); };