Merge branch 'fix/settings-checkbox' into 'develop'
Fix settings checkboxes See merge request soapbox-pub/soapbox-fe!627
This commit is contained in:
commit
567c4ce093
1 changed files with 2 additions and 2 deletions
|
@ -3,11 +3,11 @@ import { connect } from 'react-redux';
|
|||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import PropTypes from 'prop-types';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import { changeSetting } from 'soapbox/actions/settings';
|
||||
import { getSettings, changeSetting } from 'soapbox/actions/settings';
|
||||
import { Checkbox } from 'soapbox/features/forms';
|
||||
|
||||
const mapStateToProps = state => ({
|
||||
settings: state.get('settings'),
|
||||
settings: getSettings(state),
|
||||
});
|
||||
|
||||
export default @connect(mapStateToProps)
|
||||
|
|
Loading…
Reference in a new issue