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,