Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit 40e2fe0

Browse files
committed
rewrite references to bsky social
1 parent 10bead1 commit 40e2fe0

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

src/screens/Settings/AboutSettings.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ export function AboutSettingsScreen({}: Props) {
3737
<Layout.Content>
3838
<SettingsList.Container>
3939
<SettingsList.LinkItem
40-
to="https://bsky.social/about/support/tos"
40+
to="https://deer.social/about/tos"
4141
label={_(msg`Terms of Service`)}>
4242
<SettingsList.ItemIcon icon={NewspaperIcon} />
4343
<SettingsList.ItemText>
4444
<Trans>Terms of Service</Trans>
4545
</SettingsList.ItemText>
4646
</SettingsList.LinkItem>
4747
<SettingsList.LinkItem
48-
to="https://bsky.social/about/support/privacy-policy"
48+
to="https://deer.social/about/privacy"
4949
label={_(msg`Privacy Policy`)}>
5050
<SettingsList.ItemIcon icon={NewspaperIcon} />
5151
<SettingsList.ItemText>

src/screens/Takendown.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {Modal, View} from 'react-native'
33
import {KeyboardAwareScrollView} from 'react-native-keyboard-controller'
44
import {useSafeAreaInsets} from 'react-native-safe-area-context'
55
import {StatusBar} from 'expo-status-bar'
6-
import {ComAtprotoAdminDefs, ComAtprotoModerationDefs} from '@atproto/api'
6+
import {type ComAtprotoAdminDefs, ComAtprotoModerationDefs} from '@atproto/api'
77
import {msg, Trans} from '@lingui/macro'
88
import {useLingui} from '@lingui/react'
99
import {useMutation} from '@tanstack/react-query'
@@ -215,7 +215,7 @@ export function Takendown() {
215215
Your account was found to be in violation of the{' '}
216216
<InlineLinkText
217217
label={_(msg`Bluesky Social Terms of Service`)}
218-
to="https://bsky.social/about/support/tos"
218+
to="https://deer.social/about/tos"
219219
style={[a.text_md, a.leading_normal]}
220220
overridePresentation>
221221
Bluesky Social Terms of Service

src/view/screens/PrivacyPolicy.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {useLingui} from '@lingui/react'
55
import {useFocusEffect} from '@react-navigation/native'
66

77
import {usePalette} from '#/lib/hooks/usePalette'
8-
import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types'
8+
import {type CommonNavigatorParams, type NativeStackScreenProps} from '#/lib/routes/types'
99
import {s} from '#/lib/styles'
1010
import {useSetMinimalShellMode} from '#/state/shell'
1111
import {TextLink} from '#/view/com/util/Link'
@@ -36,7 +36,7 @@ export const PrivacyPolicyScreen = (_props: Props) => {
3636
The Privacy Policy has been moved to{' '}
3737
<TextLink
3838
style={pal.link}
39-
href="https://bsky.social/about/support/privacy-policy"
39+
href="https://deer.social/about/privacy"
4040
text="bsky.social/about/support/privacy-policy"
4141
/>
4242
</Trans>

src/view/screens/TermsOfService.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {useLingui} from '@lingui/react'
55
import {useFocusEffect} from '@react-navigation/native'
66

77
import {usePalette} from '#/lib/hooks/usePalette'
8-
import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types'
8+
import {type CommonNavigatorParams, type NativeStackScreenProps} from '#/lib/routes/types'
99
import {s} from '#/lib/styles'
1010
import {useSetMinimalShellMode} from '#/state/shell'
1111
import {TextLink} from '#/view/com/util/Link'
@@ -35,7 +35,7 @@ export const TermsOfServiceScreen = (_props: Props) => {
3535
<Trans>The Terms of Service have been moved to</Trans>{' '}
3636
<TextLink
3737
style={pal.link}
38-
href="https://bsky.social/about/support/tos"
38+
href="https://deer.social/about/tos"
3939
text="bsky.social/about/support/tos"
4040
/>
4141
</Text>

src/view/shell/Drawer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,12 +625,12 @@ function ExtraLinks() {
625625
<InlineLinkText
626626
style={[a.text_md]}
627627
label={_(msg`Terms of Service`)}
628-
to="https://bsky.social/about/support/tos">
628+
to="https://deer.social/about/tos">
629629
<Trans>Terms of Service</Trans>
630630
</InlineLinkText>
631631
<InlineLinkText
632632
style={[a.text_md]}
633-
to="https://bsky.social/about/support/privacy-policy"
633+
to="https://deer.social/about/privacy"
634634
label={_(msg`Privacy Policy`)}>
635635
<Trans>Privacy Policy</Trans>
636636
</InlineLinkText>

src/view/shell/desktop/RightNav.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ export function DesktopRightNav({routeName}: {routeName: string}) {
106106
</>
107107
)}
108108
<InlineLinkText
109-
to="https://bsky.social/about/support/privacy-policy"
109+
to="https://deer.social/about/privacy"
110110
label={_(msg`Privacy`)}>
111111
{_(msg`Privacy`)}
112112
</InlineLinkText>
113113
{' • '}
114114
<InlineLinkText
115-
to="https://bsky.social/about/support/tos"
115+
to="https://deer.social/about/tos"
116116
label={_(msg`Terms`)}>
117117
{_(msg`Terms`)}
118118
</InlineLinkText>

0 commit comments

Comments
 (0)