some text changes

This commit is contained in:
Kadir Sekha 2018-02-04 10:37:53 -04:00
commit 66dbf5beca
2 changed files with 2 additions and 2 deletions

View file

@ -466,7 +466,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
if ($scope.showWarningMessage) {
var u = $scope.unit == 'BCH' || $scope.unit == 'BTC' ? $scope.unit : $scope.alternativeUnit;
var message = 'Are you sure you want to send ' + u.toUpperCase() + '?';
popupService.showConfirm(message, null, 'Yes', 'No', function(res) {
popupService.showConfirm(message, '', 'Yes', 'No', function(res) {
if (!res) return;
finish();
});