diff --git a/frontend/src/components/Contexts/AlertContext.tsx b/frontend/src/components/Contexts/AlertContext.tsx index dc634e569..d11d5cb63 100644 --- a/frontend/src/components/Contexts/AlertContext.tsx +++ b/frontend/src/components/Contexts/AlertContext.tsx @@ -90,7 +90,8 @@ export const AlertProvider: FC = ({ children }) => { ) } if (!recentFailedMissions || recentFailedMissions.length === 0) updateRecentFailedMissions() - }, [installationCode, recentFailedMissions]) + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [installationCode]) // Register a signalR event handler that listens for new failed missions useEffect(() => {