about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRahul Yadav <52163880+rahulyadav5524@users.noreply.github.com>2024-01-07 19:50:12 +0530
committerGitHub <noreply@github.com>2024-01-07 19:50:12 +0530
commit218fdde8d97cfb0f16e965cae3372ed3451c7b64 (patch)
tree6821ab9f264ea4b334ce96c01204dc471bbee4d7 /src
parentabc65a9347835d827368cc06bf25b40eed7e5d5d (diff)
downloadvoidsky-218fdde8d97cfb0f16e965cae3372ed3451c7b64.tar.zst
Removed unused code
Diffstat (limited to 'src')
-rw-r--r--src/view/screens/Settings.tsx12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/view/screens/Settings.tsx b/src/view/screens/Settings.tsx
index 56890a246..5b4f6493a 100644
--- a/src/view/screens/Settings.tsx
+++ b/src/view/screens/Settings.tsx
@@ -290,7 +290,7 @@ export function SettingsScreen({}: Props) {
       </SimpleViewHeader>
       <ScrollView
         style={[s.hContentRegion]}
-        contentContainerStyle={[isMobile && pal.viewLight]}
+        contentContainerStyle={isMobile && pal.viewLight}
         scrollIndicatorInsets={{right: 1}}>
         <View style={styles.spacer20} />
         {currentAccount ? (
@@ -910,14 +910,4 @@ const styles = StyleSheet.create({
     alignItems: 'center',
     paddingLeft: 18,
   },
-  desktopContainer: {
-    borderLeftWidth: 1,
-    borderRightWidth: 1,
-  },
-  noBorder: {
-    borderBottomWidth: 0,
-    borderTopWidth: 0,
-    borderRightWidth: 0,
-    borderLeftWidth: 0,
-  },
 })