Web.Client: Confirm: fixed typo

This commit is contained in:
Daniil Senkiv 2019-10-01 14:39:54 +03:00
parent 7a5e6aa8ad
commit d4b8b3e85f

View File

@ -60,10 +60,10 @@ const Confirm = ({ match, language }) => {
);
};
function mapStatToProps(state) {
function mapStateToProps(state) {
return {
language: state.auth.user.cultureName || state.auth.settings.culture,
};
}
export default connect(mapStatToProps)(Confirm);
export default connect(mapStateToProps)(Confirm);