diff --git a/src/view/shell/Composer.tsx b/src/view/shell/Composer.tsx
index 962b5d73b2..56d02206af 100644
--- a/src/view/shell/Composer.tsx
+++ b/src/view/shell/Composer.tsx
@@ -4,7 +4,9 @@ import {StatusBar} from 'expo-status-bar'
import {observer} from 'mobx-react-lite'
import {isIOS} from '#/platform/detection'
+import {Provider as LegacyModalProvider} from '#/state/modals'
import {useComposerState} from 'state/shell/composer'
+import {ModalsContainer as LegacyModalsContainer} from '#/view/com/modals/Modal'
import {
Outlet as PortalOutlet,
Provider as PortalProvider,
@@ -25,19 +27,22 @@ export const Composer = observer(function ComposerImpl({}: {
presentationStyle="formSheet"
animationType="slide"
onRequestClose={() => ref.current?.onPressCancel()}>
-
-
-
- {isIOS && }
-
+
+
+
+
+
+
+
+ {isIOS && }
)
})