712e02db16
* Use locale/get response to suggest homepage and language switch * Fix language modal condition * Fixes from review * Fixes from review * Fix gdpr * string * Fix multiple options behavior * Fix gdpr and use only one fetch * Only show if no languages set or loaded * pt-br * Fix ad * Fix homepage select * Fix zh langs
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doHideModal } from 'redux/actions/app';
|
|
import ModalConfirm from './view';
|
|
|
|
const perform = {
|
|
doHideModal,
|
|
};
|
|
|
|
export default connect(null, perform)(ModalConfirm);
|