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/view/shell/index.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/view/shell/index.tsx')
-rw-r--r-- | src/view/shell/index.tsx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 8c08ec0c0..f3232e06e 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -25,14 +25,7 @@ import {ModalsContainer} from '#/view/com/modals/Modal' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' import {atoms as a, select, useTheme} from '#/alf' import {setSystemUITheme} from '#/alf/util/systemUI' -import {EmailDialog} from '#/components/dialogs/EmailDialog' -import {InAppBrowserConsentDialog} from '#/components/dialogs/InAppBrowserConsent' -import {LinkWarningDialog} from '#/components/dialogs/LinkWarning' -import {MutedWordsDialog} from '#/components/dialogs/MutedWords' -import {SigninDialog} from '#/components/dialogs/Signin' -import {Outlet as PortalOutlet} from '#/components/Portal' import {RoutesContainer, TabsNavigator} from '#/Navigation' -import {BottomSheetOutlet} from '../../../modules/bottom-sheet' import {updateActiveViewAsync} from '../../../modules/expo-bluesky-swiss-army/src/VisibilityView' import {Composer} from './Composer' import {DrawerContent} from './Drawer' @@ -152,14 +145,7 @@ function ShellInner() { </View> <Composer winHeight={winDim.height} /> <ModalsContainer /> - <MutedWordsDialog /> - <SigninDialog /> - <EmailDialog /> - <InAppBrowserConsentDialog /> - <LinkWarningDialog /> <Lightbox /> - <PortalOutlet /> - <BottomSheetOutlet /> </> ) } |