From 3d992f6bb5f371dacbb390bf5a9b3ee2f7e28bea Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Fri, 30 Aug 2024 18:26:03 -0500 Subject: [PATCH] Fix provider order (#5046) --- src/App.native.tsx | 24 ++++++++++++------------ src/App.web.tsx | 20 ++++++++++---------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/src/App.native.tsx b/src/App.native.tsx index 9e999ba0..609d316d 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -172,12 +172,12 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - - + + + + + + @@ -191,12 +191,12 @@ function App() { - - - - - - + + + + + + ) } diff --git a/src/App.web.tsx b/src/App.web.tsx index 88fd8024..8531dc88 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -151,11 +151,11 @@ function App() { * that is set up in the InnerApp component above. */ return ( - - - - - + + + + + @@ -169,11 +169,11 @@ function App() { - - - - - + + + + + ) }