@@ -8,12 +8,8 @@ import { SafeAreaView } from 'react-native-safe-area-context'
8
8
import { searchQuery } from 'src/requests'
9
9
import { BUILD_VERSION , openBrowserAsync } from 'src/utils'
10
10
import {
11
- Avatar ,
12
11
Button ,
13
- Heading ,
14
- Input ,
15
12
ScrollView ,
16
- Separator ,
17
13
Text ,
18
14
View ,
19
15
XStack ,
@@ -27,31 +23,9 @@ export default function SettingsScreen() {
27
23
const links = [
28
24
{ path : 'account' , url : false , name : 'Account' , icon : 'person-outline' , id : 1 } ,
29
25
{ path : 'bio' , url : false , name : 'Bio' , icon : 'person-circle-outline' , id : 2 } ,
30
- // { path: "camera", url: false, name: "Camera", icon: "camera-outline", id: 4 },
31
- // { path: "federation", url: false, name: "Federation", icon: "planet-outline", id: 5 },
32
- // { path: "notifications", url: false, name: "Notifications", icon: "notifications-circle-outline", id: 6 },
26
+ { path : 'app' , url : false , name : 'App Settings' , icon : 'settings-outline' , id : 10 } ,
33
27
]
34
28
35
- if ( Platform . OS === 'ios' ) {
36
- links . push ( {
37
- path : 'app' ,
38
- url : false ,
39
- name : 'App Settings' ,
40
- icon : 'settings-outline' ,
41
- id : 10 ,
42
- } )
43
- }
44
-
45
- if ( Platform . OS === 'android' ) {
46
- links . push ( {
47
- path : 'android/updates' ,
48
- url : false ,
49
- name : 'Check for updates' ,
50
- icon : 'logo-android' ,
51
- id : 10 ,
52
- } )
53
- }
54
-
55
29
const helpLinks = [
56
30
{
57
31
path : '' ,
@@ -60,8 +34,6 @@ export default function SettingsScreen() {
60
34
icon : 'help-circle-outline' ,
61
35
id : 7 ,
62
36
} ,
63
- // { path: "feedback", url: false, name: "Suggest Feature", icon: "color-wand-outline", id: 8 },
64
- // { path: "feedback/bug", url: false, name: "Report Bug", icon: "bug-outline", id: 9 },
65
37
]
66
38
67
39
const openWebLink = async ( url ) => {
0 commit comments