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 | |
parent | 3b9a51c43fb9c7c91ecd137f04eee109191d93a6 (diff) | |
download | voidsky-72dc508cb7f678df50ebb41db9adbcf826ed6975.tar.zst |
Move intent dialogs inside Alf, but above intent handlers (#7416)
Diffstat (limited to 'src')
-rw-r--r-- | src/App.native.tsx | 16 | ||||
-rw-r--r-- | src/App.web.tsx | 14 |
2 files changed, 15 insertions, 15 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> diff --git a/src/App.web.tsx b/src/App.web.tsx index 8a2e13600..f0fb87a31 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -129,8 +129,10 @@ function InnerApp() { <SafeAreaProvider> <ProgressGuideProvider> <TrendingConfigProvider> - <Shell /> - <NuxDialogs /> + <IntentDialogProvider> + <Shell /> + <NuxDialogs /> + </IntentDialogProvider> </TrendingConfigProvider> </ProgressGuideProvider> </SafeAreaProvider> @@ -187,11 +189,9 @@ function App() { <LightboxStateProvider> <PortalProvider> <StarterPackProvider> - <IntentDialogProvider> - <LightStatusBarProvider> - <InnerApp /> - </LightStatusBarProvider> - </IntentDialogProvider> + <LightStatusBarProvider> + <InnerApp /> + </LightStatusBarProvider> </StarterPackProvider> </PortalProvider> </LightboxStateProvider> |