Skip to content

Commit

Permalink
EPMRPP-96556 || Code Review fixes - 3
Browse files Browse the repository at this point in the history
  • Loading branch information
iso9000t committed Nov 4, 2024
1 parent 94930e2 commit 22c9a0e
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ import { AsyncAutocomplete } from 'components/inputs/autocompletes/asyncAutocomp
import { InputDropdown } from 'components/inputs/inputDropdown';
import { MEMBERS_PAGE_EVENTS } from 'components/main/analytics/events';
import { InputUserSearch, makeOptions } from 'components/inputs/inputUserSearch';
import { fetchProjectAction } from 'controllers/project/actionCreators';
import styles from './inviteUserModal.scss';

const cx = classNames.bind(styles);
Expand Down Expand Up @@ -104,7 +103,6 @@ const inviteFormSelector = formValueSelector('inviteUserForm');
showScreenLockAction,
hideScreenLockAction,
showNotification,
fetchProjectAction,
},
)
@reduxForm({
Expand Down Expand Up @@ -133,7 +131,6 @@ export class InviteUserModal extends Component {
isAdmin: PropTypes.bool,
dirty: PropTypes.bool,
areUserSuggestionsAllowed: PropTypes.bool.isRequired,
fetchProjectAction: PropTypes.func.isRequired,
};

static defaultProps = {
Expand Down Expand Up @@ -211,7 +208,6 @@ export class InviteUserModal extends Component {
type: NOTIFICATION_TYPES.SUCCESS,
});
onInvite();
this.props.fetchProjectAction(selectedProject, false);
})
.catch((err) => {
this.props.showNotification({
Expand Down

0 comments on commit 22c9a0e

Please sign in to comment.