diff options
author | Eric Bailey <git@esb.lol> | 2025-01-09 15:34:00 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 15:34:00 -0600 |
commit | 72dc508cb7f678df50ebb41db9adbcf826ed6975 (patch) | |
tree | 54e60664039980252b4de26fbbb6a9826576b9b1 /src/App.native.tsx | |
parent | 3b9a51c43fb9c7c91ecd137f04eee109191d93a6 (diff) | |
download | voidsky-72dc508cb7f678df50ebb41db9adbcf826ed6975.tar.zst |
Move intent dialogs inside Alf, but above intent handlers (#7416)
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 3c3e8a46d..0c146dcc9 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -151,9 +151,11 @@ function InnerApp() { <TrendingConfigProvider> <GestureHandlerRootView style={s.h100pct}> - <TestCtrls /> - <Shell /> - <NuxDialogs /> + <IntentDialogProvider> + <TestCtrls /> + <Shell /> + <NuxDialogs /> + </IntentDialogProvider> </GestureHandlerRootView> </TrendingConfigProvider> </ProgressGuideProvider> @@ -213,11 +215,9 @@ function App() { <StarterPackProvider> <SafeAreaProvider initialMetrics={initialWindowMetrics}> - <IntentDialogProvider> - <LightStatusBarProvider> - <InnerApp /> - </LightStatusBarProvider> - </IntentDialogProvider> + <LightStatusBarProvider> + <InnerApp /> + </LightStatusBarProvider> </SafeAreaProvider> </StarterPackProvider> </BottomSheetProvider> |