diff --git a/src/ui/store.js b/src/ui/store.js index 5218ee74c..78751d785 100644 --- a/src/ui/store.js +++ b/src/ui/store.js @@ -117,6 +117,10 @@ const triggerSharedStateActions = [ * source: the reducer name * property: the property in the reducer-specific state * transform: optional method to modify the value to be stored + * + * See https://github.com/lbryio/lbry-redux/blob/master/src/redux/middleware/shared-state.js for the source + * This is based off v0.1 + * If lbry-redux changes to another version, this code will need to be changed when upgrading */ const sharedStateFilters = { tags: { source: 'tags', property: 'followedTags' }, diff --git a/src/ui/util/saved-passwords.js b/src/ui/util/saved-passwords.js index 74bec7a92..90139262d 100644 --- a/src/ui/util/saved-passwords.js +++ b/src/ui/util/saved-passwords.js @@ -19,7 +19,8 @@ export const getSavedPassword = () => { // @endif // @if TARGET='web' - resolve(); + // Will handle saved passwords on web differently + resolve(''); // @endif }); };