add comments

This commit is contained in:
Sean Yesmunt 2019-10-15 12:09:33 -04:00
parent 43900dd72f
commit 33d690040e
2 changed files with 6 additions and 1 deletions

View file

@ -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' },

View file

@ -19,7 +19,8 @@ export const getSavedPassword = () => {
// @endif
// @if TARGET='web'
resolve();
// Will handle saved passwords on web differently
resolve('');
// @endif
});
};