From f29bad1c1cfd9c94f36779fee46f41f0b5d4cc18 Mon Sep 17 00:00:00 2001 From: Ashish Gupta Date: Thu, 6 Mar 2025 18:24:44 +0530 Subject: [PATCH] fix the application re-loading on profile page team or role changes (#20108) --- .../Applications/ApplicationsProvider/ApplicationsProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Settings/Applications/ApplicationsProvider/ApplicationsProvider.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Settings/Applications/ApplicationsProvider/ApplicationsProvider.tsx index 66187ca0dc1..84a1b794087 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/Settings/Applications/ApplicationsProvider/ApplicationsProvider.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/Settings/Applications/ApplicationsProvider/ApplicationsProvider.tsx @@ -58,7 +58,7 @@ export const ApplicationsProvider = ({ children }: { children: ReactNode }) => { } else { setLoading(false); } - }, [permissions]); + }, []); const appContext = useMemo(() => { return { applications };