lbry-desktop/ui/modal/modalSyncEnable/index.js
jessop 3b23f09bed fix sync clean wallet bug
remove previous changes,keep syncpref in wallet, change anon wallet pref key to local

sync choices wip

dont relocate syncenable setting

bump

no prefs on web unauth

bugfix redux bump

pull after sync change

bump
2020-09-21 14:11:25 -04:00

12 lines
281 B
JavaScript

import { connect } from 'react-redux';
import { doHideModal } from 'redux/actions/app';
import ModalSyncEnable from './view';
const perform = dispatch => () => ({
closeModal: () => {
dispatch(doHideModal());
},
});
export default connect(null, perform)(ModalSyncEnable);