From ddf4fbc4ce18765846e43113447fd8839a2c68f7 Mon Sep 17 00:00:00 2001 From: mabashian Date: Wed, 26 May 2021 12:59:09 -0400 Subject: [PATCH] Fix linting errors --- awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx index b439f86be9..9d4b61aa1f 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx +++ b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx @@ -359,7 +359,7 @@ function JobOutput({ job, eventRelatedSearchableKeys, eventSearchableKeys }) { if (listRef.current?.recomputeRowHeights) { listRef.current.recomputeRowHeights(); } - }, [currentlyLoading.current, cssMap, remoteRowCount]); + }, [cssMap, remoteRowCount]); useEffect(() => { if (jobStatus && !isJobRunning(jobStatus)) { @@ -375,7 +375,7 @@ function JobOutput({ job, eventRelatedSearchableKeys, eventSearchableKeys }) { setTimeout(() => setIsFollowModeEnabled(false), 1000); } } - }, [jobStatus]); + }, [jobStatus]); // eslint-disable-line react-hooks/exhaustive-deps const { error: cancelError,