about summary refs log tree commit diff
path: root/src/view/shell/web/DesktopRightColumn.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/shell/web/DesktopRightColumn.tsx')
-rw-r--r--src/view/shell/web/DesktopRightColumn.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx
index b051e6094..2f70a43d2 100644
--- a/src/view/shell/web/DesktopRightColumn.tsx
+++ b/src/view/shell/web/DesktopRightColumn.tsx
@@ -3,10 +3,8 @@ import {StyleSheet, View} from 'react-native'
 import {Text} from '../../com/util/text/Text'
 import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows'
 import {s} from 'lib/styles'
-import {useStores} from 'state/index'
 
 export const DesktopRightColumn: React.FC = () => {
-  const store = useStores()
   return (
     <View style={styles.container}>
       <Text type="lg-bold" style={s.mb10}>
@@ -21,6 +19,7 @@ const styles = StyleSheet.create({
   container: {
     position: 'absolute',
     right: 0,
+    top: 90,
     width: '400px',
     paddingHorizontal: 16,
     paddingRight: 32,