Skip to content

Commit

Permalink
fix: missing injectIntl in IndicatorEdit #556
Browse files Browse the repository at this point in the history
  • Loading branch information
vbojilova committed Jul 2, 2024
1 parent e0a1313 commit d26f5ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/containers/IndicatorEdit/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import HelmetCanonical from 'components/HelmetCanonical';
import { FormattedMessage } from 'react-intl';
import { FormattedMessage, injectIntl } from 'react-intl';
import { actions as formActions } from 'react-redux-form/immutable';

import { Map, List, fromJS } from 'immutable';
Expand Down Expand Up @@ -598,4 +598,4 @@ function mapDispatchToProps(dispatch, props) {
};
}

export default connect(mapStateToProps, mapDispatchToProps)(IndicatorEdit);
export default injectIntl(connect(mapStateToProps, mapDispatchToProps)(IndicatorEdit));

0 comments on commit d26f5ea

Please sign in to comment.