diff --git a/public/views/tab-home.html b/public/views/tab-home.html
index 228d0dd8e..60849ecf8 100644
--- a/public/views/tab-home.html
+++ b/public/views/tab-home.html
@@ -7,7 +7,7 @@
diff --git a/src/js/controllers/tab-home.js b/src/js/controllers/tab-home.js
index c3f15b0a6..2ed46ed6d 100644
--- a/src/js/controllers/tab-home.js
+++ b/src/js/controllers/tab-home.js
@@ -109,6 +109,13 @@ angular.module('copayApp.controllers').controller('tabHomeController',
});
};
+ $scope.hideHomeTip = function() {
+ $scope.homeTip = null;
+ $state.transitionTo($state.current, null, {
+ reload: false, inherit: false, notify: false
+ });
+ };
+
$scope.nextStep = function() {
lodash.each(['AmazonGiftCards', 'BitpayCard', 'BuyAndSell'], function(service) {
storageService.getNextStep(service, function(err, value) {