57 lines
2.1 KiB
Diff
57 lines
2.1 KiB
Diff
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
|
|
index f76147ccf..36b4d7de1 100644
|
|
--- a/src/view/shell/Drawer.tsx
|
|
+++ b/src/view/shell/Drawer.tsx
|
|
@@ -292,17 +292,11 @@ let DrawerContent = ({}: React.PropsWithoutRef<{}>): React.ReactNode => {
|
|
<>
|
|
<SearchMenuItem isActive={isAtSearch} onPress={onPressSearch} />
|
|
<HomeMenuItem isActive={isAtHome} onPress={onPressHome} />
|
|
- <ChatMenuItem isActive={isAtMessages} onPress={onPressMessages} />
|
|
<NotificationsMenuItem
|
|
isActive={isAtNotifications}
|
|
onPress={onPressNotifications}
|
|
/>
|
|
<FeedsMenuItem isActive={isAtFeeds} onPress={onPressMyFeeds} />
|
|
- <ListsMenuItem onPress={onPressLists} />
|
|
- <BookmarksMenuItem
|
|
- isActive={isAtBookmarks}
|
|
- onPress={onPressBookmarks}
|
|
- />
|
|
<ProfileMenuItem
|
|
isActive={isAtMyProfile}
|
|
onPress={onPressProfile}
|
|
@@ -357,17 +351,7 @@ let DrawerFooter = ({
|
|
),
|
|
},
|
|
]}>
|
|
- <Button
|
|
- label={_(msg`Send feedback`)}
|
|
- size="small"
|
|
- variant="solid"
|
|
- color="secondary"
|
|
- onPress={onPressFeedback}>
|
|
- <ButtonIcon icon={Message} position="left" />
|
|
- <ButtonText>
|
|
- <Trans>Feedback</Trans>
|
|
- </ButtonText>
|
|
- </Button>
|
|
+{/* Feedback button removed for syu.is */}
|
|
<Button
|
|
label={_(msg`Get help`)}
|
|
size="small"
|
|
@@ -695,12 +679,12 @@ function ExtraLinks() {
|
|
<InlineLinkText
|
|
style={[a.text_md]}
|
|
label={_(msg`Terms of Service`)}
|
|
- to="https://bsky.social/about/support/tos">
|
|
+ to="https://syu.is/about/support/tos">
|
|
<Trans>Terms of Service</Trans>
|
|
</InlineLinkText>
|
|
<InlineLinkText
|
|
style={[a.text_md]}
|
|
- to="https://bsky.social/about/support/privacy-policy"
|
|
+ to="https://syu.is/about/support/privacy-policy"
|
|
label={_(msg`Privacy Policy`)}>
|
|
<Trans>Privacy Policy</Trans>
|
|
</InlineLinkText>
|