d97a23b699
I believe it was just due to copy/pasting from another file and not renaming it.
16 lines
625 B
JavaScript
16 lines
625 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doSetClientSetting } from 'redux/actions/settings';
|
|
import { selectosNotificationsEnabled } from 'redux/selectors/settings';
|
|
import { selectUserVerifiedEmail } from 'redux/selectors/user';
|
|
import NotificationSettingsPage from './view';
|
|
|
|
const select = (state) => ({
|
|
osNotificationsEnabled: selectosNotificationsEnabled(state),
|
|
isAuthenticated: Boolean(selectUserVerifiedEmail(state)),
|
|
});
|
|
|
|
const perform = (dispatch) => ({
|
|
setClientSetting: (key, value) => dispatch(doSetClientSetting(key, value)),
|
|
});
|
|
|
|
export default connect(select, perform)(NotificationSettingsPage);
|