Skip to content

Commit

Permalink
Fix validation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
caleballdrin committed Nov 5, 2024
1 parent cf6b654 commit bf7d994
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ export const MassActionsEditTasksModal: React.FC<
// None and null are distinct values: null leaves the action unchanged and None changes the action to None
preserveNone
required={!!taskPhase}
onBlur={handleBlur('activityType')}
touched={touched}
errors={errors}
inputRef={activityRef}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const AssigneeAutocomplete: React.FC<AssigneeAutocompleteProps> = ({
return (
<Autocomplete
autoSelect
autoHighlight
options={users.map(({ user }) => user.id)}
getOptionLabel={(userId) => {
const user = users.find(({ user }) => user.id === userId)?.user;
Expand Down

0 comments on commit bf7d994

Please sign in to comment.