47 lines
2.1 KiB
Diff
47 lines
2.1 KiB
Diff
diff --git a/src/screens/Settings/AboutSettings.tsx b/src/screens/Settings/AboutSettings.tsx
|
|
index 6b8257b91..88a181dcb 100644
|
|
--- a/src/screens/Settings/AboutSettings.tsx
|
|
+++ b/src/screens/Settings/AboutSettings.tsx
|
|
@@ -28,7 +28,7 @@ import {useDevMode} from '#/storage/hooks/dev-mode'
|
|
import {OTAInfo} from './components/OTAInfo'
|
|
|
|
type Props = NativeStackScreenProps<CommonNavigatorParams, 'AboutSettings'>
|
|
-export function AboutSettingsScreen({}: Props) {
|
|
+export function AboutSettingsScreen({navigation}: Props) {
|
|
const {_, i18n} = useLingui()
|
|
const [devModeEnabled, setDevModeEnabled] = useDevMode()
|
|
const [demoModeEnabled, setDemoModeEnabled] = useDemoMode()
|
|
@@ -80,7 +80,7 @@ export function AboutSettingsScreen({}: Props) {
|
|
<Layout.Content>
|
|
<SettingsList.Container>
|
|
<SettingsList.LinkItem
|
|
- to="https://bsky.social/about/support/tos"
|
|
+ to="https://syu.is/about/support/tos"
|
|
label={_(msg`Terms of Service`)}>
|
|
<SettingsList.ItemIcon icon={NewspaperIcon} />
|
|
<SettingsList.ItemText>
|
|
@@ -88,13 +88,22 @@ export function AboutSettingsScreen({}: Props) {
|
|
</SettingsList.ItemText>
|
|
</SettingsList.LinkItem>
|
|
<SettingsList.LinkItem
|
|
- to="https://bsky.social/about/support/privacy-policy"
|
|
+ to="https://syu.is/about/support/privacy-policy"
|
|
label={_(msg`Privacy Policy`)}>
|
|
<SettingsList.ItemIcon icon={NewspaperIcon} />
|
|
<SettingsList.ItemText>
|
|
<Trans>Privacy Policy</Trans>
|
|
</SettingsList.ItemText>
|
|
</SettingsList.LinkItem>
|
|
+ <SettingsList.PressableItem
|
|
+ onPress={() => navigation.navigate('License')}
|
|
+ label={_(msg`License`)}>
|
|
+ <SettingsList.ItemIcon icon={NewspaperIcon} />
|
|
+ <SettingsList.ItemText>
|
|
+ <Trans>License</Trans>
|
|
+ </SettingsList.ItemText>
|
|
+ </SettingsList.PressableItem>
|
|
+
|
|
<SettingsList.LinkItem
|
|
to={STATUS_PAGE_URL}
|
|
label={_(msg`Status Page`)}>
|