ee9f63a161
bugfix wip flow fix cleaning clean
22 lines
787 B
JavaScript
22 lines
787 B
JavaScript
import { connect } from 'react-redux';
|
|
import { selectMyChannelClaims } from 'redux/selectors/claims';
|
|
import { selectWalletIsEncrypted } from 'redux/selectors/wallet';
|
|
import { doWalletStatus } from 'redux/actions/wallet';
|
|
import { selectUser, selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import { selectLanguage } from 'redux/selectors/settings';
|
|
|
|
import SettingAccount from './view';
|
|
|
|
const select = (state) => ({
|
|
isAuthenticated: selectUserVerifiedEmail(state),
|
|
walletEncrypted: selectWalletIsEncrypted(state),
|
|
user: selectUser(state),
|
|
myChannels: selectMyChannelClaims(state),
|
|
language: selectLanguage(state),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
doWalletStatus: () => dispatch(doWalletStatus()),
|
|
});
|
|
|
|
export default connect(select, perform)(SettingAccount);
|