diff --git a/ui/src/shared/components/ViewLoadingSpinner.tsx b/ui/src/shared/components/ViewLoadingSpinner.tsx index d4df1796137..c55bfec5c71 100644 --- a/ui/src/shared/components/ViewLoadingSpinner.tsx +++ b/ui/src/shared/components/ViewLoadingSpinner.tsx @@ -27,7 +27,7 @@ const ViewLoadingSpinner: FunctionComponent = ({loading}) => { } useEffect(() => { - if (loading === RemoteDataState.Done) { + if (loading === RemoteDataState.Done || RemoteDataState.Error) { resetTimer() }