diff options
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r-- | src/view/shell/web/index.tsx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index 76b5ed09f..a76ae8060 100644 --- a/src/view/shell/web/index.tsx +++ b/src/view/shell/web/index.tsx @@ -6,7 +6,6 @@ import {useStores} from 'state/index' import {NavigationModel} from 'state/models/navigation' import {match, MatchResult} from '../../routes' import {DesktopHeader} from './DesktopHeader' -import {Onboard} from '../../screens/Onboard' import {Login} from '../../screens/Login' import {ErrorBoundary} from '../../com/util/ErrorBoundary' import {Lightbox} from '../../com/lightbox/Lightbox' @@ -35,15 +34,6 @@ export const WebShell: React.FC = observer(() => { </View> ) } - if (store.onboard.isOnboarding) { - return ( - <View style={styles.outerContainer}> - <ErrorBoundary> - <Onboard /> - </ErrorBoundary> - </View> - ) - } return ( <View style={[styles.outerContainer, pageBg]}> |