Skip to content

Commit

Permalink
Fix program select
Browse files Browse the repository at this point in the history
  • Loading branch information
patryk-dabrowski committed May 13, 2024
1 parent 416c153 commit abb45d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/containers/GlobalProgramSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ export const GlobalProgramSelect = () => {
);
setPrograms(newProgramsList);
}
}, [programsList?.allPrograms, inputValue]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [programsList?.allPrograms]);

const handleClose = () => {
setAnchorEl(null);
Expand Down

0 comments on commit abb45d3

Please sign in to comment.