diff --git a/src/js/services/configService.js b/src/js/services/configService.js index 19c21fe00..fcf496775 100644 --- a/src/js/services/configService.js +++ b/src/js/services/configService.js @@ -122,7 +122,9 @@ angular.module('copayApp.services').factory('configService', function(storageSer bitcoinWalletColor: '#fab915', // Observatory bitcoinCashWalletColor: '#26B03C', // Dollar Green - homeSectionIsHidden: {} + homeSectionIsHidden: { + services: false + } }; var configCache = null; @@ -201,6 +203,10 @@ angular.module('copayApp.services').factory('configService', function(storageSer } } } + + if (!configCache.homeSectionIsHidden) { + configCache.homeSectionIsHidden = defaultConfig.homeSectionIsHidden; + } } else { configCache = lodash.clone(defaultConfig);