From 389d16aad14ba5146e12fd85cdd57c1373534726 Mon Sep 17 00:00:00 2001 From: Alf Eaton Date: Fri, 8 Dec 2023 09:36:54 +0000 Subject: [PATCH] Move ModalsContextProvider up the context tree (#16095) GitOrigin-RevId: 2f978f410624597c747f32a84853393a5771582c --- .../ide-react/context/react-context-root.tsx | 68 +++++++++---------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/services/web/frontend/js/features/ide-react/context/react-context-root.tsx b/services/web/frontend/js/features/ide-react/context/react-context-root.tsx index 29273f2465..aa97ba7ff6 100644 --- a/services/web/frontend/js/features/ide-react/context/react-context-root.tsx +++ b/services/web/frontend/js/features/ide-react/context/react-context-root.tsx @@ -24,23 +24,23 @@ import { PermissionsProvider } from '@/features/ide-react/context/permissions-co export const ReactContextRoot: FC = ({ children }) => { return ( - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -48,23 +48,23 @@ export const ReactContextRoot: FC = ({ children }) => { - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + ) }