Skip to content

Commit

Permalink
fix(client): fix bug that disabled adding members to event
Browse files Browse the repository at this point in the history
affects: client

Removed a line of code that was trying to modify an immutable array. Intended functionality
preserved without any code additions.

ISSUES CLOSED: #371
  • Loading branch information
rvboerner committed Nov 25, 2023
1 parent a479ee2 commit fc52292
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,6 @@ export default class EventForm extends React.Component<EventFormProps, EventForm
},
],
};
this.props.memberList.push(result.value);
this.props.onEventChange(event, false);
this.setState({ addingPOCbyID: false, addPOCbyID: null });
}
Expand Down

0 comments on commit fc52292

Please sign in to comment.