From b0109448d8f5c195e782ef2b8c642b917c99f06c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 23 Feb 2023 10:25:24 -0600 Subject: [PATCH] Missed in last commit --- src/view/shell/web/DesktopRightColumn.tsx | 2 +- src/view/shell/web/index.tsx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx index 2f70a43d21..6a59f4e85c 100644 --- a/src/view/shell/web/DesktopRightColumn.tsx +++ b/src/view/shell/web/DesktopRightColumn.tsx @@ -19,7 +19,7 @@ const styles = StyleSheet.create({ container: { position: 'absolute', right: 0, - top: 90, + top: 60, width: '400px', paddingHorizontal: 16, paddingRight: 32, diff --git a/src/view/shell/web/index.tsx b/src/view/shell/web/index.tsx index 4a4bde8173..5258257f72 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 {DesktopLeftColumn} from './DesktopLeftColumn' import {DesktopRightColumn} from './DesktopRightColumn' import {Onboard} from '../../screens/Onboard' import {Login} from '../../screens/Login' @@ -14,7 +13,6 @@ import {ErrorBoundary} from '../../com/util/ErrorBoundary' import {Lightbox} from '../../com/lightbox/Lightbox' import {Modal} from '../../com/modals/Modal' import {Composer} from './Composer' -import {usePalette} from 'lib/hooks/usePalette' import {useColorSchemeStyle} from 'lib/hooks/useColorSchemeStyle' import {s, colors} from 'lib/styles'