diff options
author | Eric Bailey <git@esb.lol> | 2025-06-18 09:53:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 09:53:34 -0500 |
commit | f83335f1102ecb451ea4ee53f35f711f528956c8 (patch) | |
tree | 50a1a920bbb79d6ea9c68ef1f4430dcac0553ebb /src/App.native.tsx | |
parent | 4da86e5864e10b14880900b78cb94d33c199b7da (diff) | |
download | voidsky-f83335f1102ecb451ea4ee53f35f711f528956c8.tar.zst |
Move dialog outputs inside navigation context (#8511)
* Move all dialogs within NavigationContent on native * Ok leave old ModalsContainer alone for now * Do the same on web * Gate browser consent dialog just to be clear
Diffstat (limited to 'src/App.native.tsx')
-rw-r--r-- | src/App.native.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/App.native.tsx b/src/App.native.tsx index 81d4a870e..45021da22 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -64,7 +64,6 @@ import {Shell} from '#/view/shell' import {ThemeProvider as Alf} from '#/alf' import {useColorModeTheme} from '#/alf/util/useColorModeTheme' import {Provider as ContextMenuProvider} from '#/components/ContextMenu' -import {NuxDialogs} from '#/components/dialogs/nuxs' import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as IntentDialogProvider} from '#/components/intents/IntentDialogs' import {Provider as PortalProvider} from '#/components/Portal' @@ -157,7 +156,6 @@ function InnerApp() { <IntentDialogProvider> <TestCtrls /> <Shell /> - <NuxDialogs /> </IntentDialogProvider> </GestureHandlerRootView> </HideBottomBarBorderProvider> |