diff options
Diffstat (limited to 'src/view/shell/mobile/index.tsx')
-rw-r--r-- | src/view/shell/mobile/index.tsx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/view/shell/mobile/index.tsx b/src/view/shell/mobile/index.tsx index dbfcad0ee..80403a6de 100644 --- a/src/view/shell/mobile/index.tsx +++ b/src/view/shell/mobile/index.tsx @@ -26,7 +26,6 @@ import { import {match, MatchResult} from '../../routes' import {Login} from '../../screens/Login' import {Menu} from './Menu' -import {Onboard} from '../../screens/Onboard' import {HorzSwipe} from '../../com/util/gestures/HorzSwipe' import {ModalsContainer} from '../../com/modals/Modal' import {Lightbox} from '../../com/lightbox/Lightbox' @@ -408,17 +407,6 @@ export const MobileShell: React.FC = observer(() => { </View> ) } - if (store.onboard.isOnboarding) { - return ( - <View testID="onboardOuterView" style={styles.outerContainer}> - <View style={styles.innerContainer}> - <ErrorBoundary> - <Onboard /> - </ErrorBoundary> - </View> - </View> - ) - } const isAtHome = store.nav.tab.current.url === TabPurposeMainPath[TabPurpose.Default] |