43 lines
1.6 KiB
Diff
43 lines
1.6 KiB
Diff
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
|
|
index ed2a6cfb7..b9776af52 100644
|
|
--- a/src/view/shell/Drawer.tsx
|
|
+++ b/src/view/shell/Drawer.tsx
|
|
@@ -689,21 +689,25 @@ function ExtraLinks() {
|
|
const {_} = useLingui()
|
|
const t = useTheme()
|
|
const kawaii = useKawaiiMode()
|
|
+ const navigation = useNavigation<NavigationProp>()
|
|
|
|
return (
|
|
<View style={[a.flex_col, a.gap_md, a.flex_wrap]}>
|
|
- <InlineLinkText
|
|
- style={[a.text_md]}
|
|
- label={_(msg`Terms of Service`)}
|
|
- to="https://bsky.social/about/support/tos">
|
|
- <Trans>Terms of Service</Trans>
|
|
- </InlineLinkText>
|
|
- <InlineLinkText
|
|
- style={[a.text_md]}
|
|
- to="https://bsky.social/about/support/privacy-policy"
|
|
- label={_(msg`Privacy Policy`)}>
|
|
- <Trans>Privacy Policy</Trans>
|
|
- </InlineLinkText>
|
|
+ <TouchableOpacity onPress={() => navigation.navigate('TermsOfService')}>
|
|
+ <Text style={[a.text_md, t.atoms.text_contrast_medium]}>
|
|
+ <Trans>Terms of Service</Trans>
|
|
+ </Text>
|
|
+ </TouchableOpacity>
|
|
+ <TouchableOpacity onPress={() => navigation.navigate('PrivacyPolicy')}>
|
|
+ <Text style={[a.text_md, t.atoms.text_contrast_medium]}>
|
|
+ <Trans>Privacy Policy</Trans>
|
|
+ </Text>
|
|
+ </TouchableOpacity>
|
|
+ <TouchableOpacity onPress={() => navigation.navigate('License')}>
|
|
+ <Text style={[a.text_md, t.atoms.text_contrast_medium]}>
|
|
+ <Trans>License</Trans>
|
|
+ </Text>
|
|
+ </TouchableOpacity>
|
|
{kawaii && (
|
|
<Text style={t.atoms.text_contrast_medium}>
|
|
<Trans>
|