3b23f09bed
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
11 lines
281 B
JavaScript
11 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);
|