diff --git a/public/views/splash/1.html b/public/views/splash/1.html index 85bc6c244..dcaf084c7 100644 --- a/public/views/splash/1.html +++ b/public/views/splash/1.html @@ -1,4 +1,4 @@ -
+
diff --git a/src/js/routes.js b/src/js/routes.js index d52bab836..efb92b28a 100644 --- a/src/js/routes.js +++ b/src/js/routes.js @@ -71,7 +71,6 @@ angular templateUrl: 'views/splash/1.html', controller: function($scope, $timeout, $log, profileService, go) { if (profileService.profile) { - $scope.hasProfile = true; go.walletHome(); } @@ -87,10 +86,6 @@ angular $timeout(function() { $scope.create(); }, 3000); - } else { - $timeout(function(){ - go.walletHome(); - }, 100); } }); };