diff --git a/frontend/src/container/AppLayout/index.tsx b/frontend/src/container/AppLayout/index.tsx index fdcfbaa5772f..f038ca6ef89c 100644 --- a/frontend/src/container/AppLayout/index.tsx +++ b/frontend/src/container/AppLayout/index.tsx @@ -185,7 +185,8 @@ function AppLayout(props: AppLayoutProps): JSX.Element { if (!changelog && !getChangelogByVersionResponse.isLoading && isVisible) { getChangelogByVersionResponse.refetch(); } - }, [isVisible, changelog, getChangelogByVersionResponse]); + /* eslint-disable react-hooks/exhaustive-deps */ + }, [isVisible]); useEffect(() => { let timer: ReturnType;