From 468625a62dfcddf357c08187b8a6751af57068cf Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Mon, 15 Dec 2014 14:44:07 -0300 Subject: [PATCH] fixed typo in login message --- js/controllers/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/controllers/home.js b/js/controllers/home.js index 076156770..7ada0984c 100644 --- a/js/controllers/home.js +++ b/js/controllers/home.js @@ -130,7 +130,7 @@ angular.module('copayApp.controllers').controller('HomeController', function($sc if ($scope.attempt++ > 1) { var storage = $scope.usingLocalStorage ? 'this device storage' : 'cloud storage'; - $scope.error = 'Invalid email or password. You are trying to sign in using ' + storage + '. Change it on settings is necessary.'; + $scope.error = 'Invalid email or password. You are trying to sign in using ' + storage + '. Change it on settings if necessary.'; }; $rootScope.hasPin = false;