about summary refs log tree commit diff
path: root/src/view/shell/web/DesktopRightColumn.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-02-24 11:29:27 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-02-24 11:29:27 -0600
commit80bd3398d768b9529d97d48579555358b35616db (patch)
tree3ffc5cdaab4fbae140f57da8ecfeadbbc8a0881a /src/view/shell/web/DesktopRightColumn.tsx
parentfa115c1cba0a4d0ab453961ee02fd9702c2517be (diff)
downloadvoidsky-80bd3398d768b9529d97d48579555358b35616db.tar.zst
Remove the desktop right column for now
Diffstat (limited to 'src/view/shell/web/DesktopRightColumn.tsx')
-rw-r--r--src/view/shell/web/DesktopRightColumn.tsx28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/view/shell/web/DesktopRightColumn.tsx b/src/view/shell/web/DesktopRightColumn.tsx
deleted file mode 100644
index 6a59f4e85..000000000
--- a/src/view/shell/web/DesktopRightColumn.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react'
-import {StyleSheet, View} from 'react-native'
-import {Text} from '../../com/util/text/Text'
-import {LiteSuggestedFollows} from '../../com/discover/LiteSuggestedFollows'
-import {s} from 'lib/styles'
-
-export const DesktopRightColumn: React.FC = () => {
-  return (
-    <View style={styles.container}>
-      <Text type="lg-bold" style={s.mb10}>
-        Suggested Follows
-      </Text>
-      <LiteSuggestedFollows />
-    </View>
-  )
-}
-
-const styles = StyleSheet.create({
-  container: {
-    position: 'absolute',
-    right: 0,
-    top: 60,
-    width: '400px',
-    paddingHorizontal: 16,
-    paddingRight: 32,
-    paddingTop: 20,
-  },
-})