diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-02-24 11:29:27 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-02-24 11:29:27 -0600 |
commit | 80bd3398d768b9529d97d48579555358b35616db (patch) | |
tree | 3ffc5cdaab4fbae140f57da8ecfeadbbc8a0881a /src/view/shell/web/index.tsx | |
parent | fa115c1cba0a4d0ab453961ee02fd9702c2517be (diff) | |
download | voidsky-80bd3398d768b9529d97d48579555358b35616db.tar.zst |
Remove the desktop right column for now
Diffstat (limited to 'src/view/shell/web/index.tsx')
-rw-r--r-- | src/view/shell/web/index.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index ae1a526a0..358ab5d4d 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 {DesktopRightColumn} from './DesktopRightColumn' import {Onboard} from '../../screens/Onboard' import {Login} from '../../screens/Login' import {ErrorBoundary} from '../../com/util/ErrorBoundary' @@ -58,7 +57,6 @@ export const WebShell: React.FC = observer(() => { </ErrorBoundary> </View> ))} - <DesktopRightColumn /> <Composer active={store.shell.isComposerActive} onClose={() => store.shell.closeComposer()} |