+2
-1
src/components/contacts/screens/PhoneInput.tsx
+2
-1
src/components/contacts/screens/PhoneInput.tsx
···
7
7
import {useLingui} from '@lingui/react'
8
8
import {useMutation} from '@tanstack/react-query'
9
9
10
+
import {urls} from '#/lib/constants'
10
11
import {
11
12
type CountryCode,
12
13
getDefaultCountry,
···
294
295
By continuing, you consent to this use. You may change your mind any
295
296
time by visiting settings.{' '}
296
297
<InlineLinkText
297
-
to="#"
298
+
to={urls.website.support.findFriendsPrivacyPolicy}
298
299
label={_(
299
300
msg({
300
301
message: `Learn more about importing contacts`,
+6
src/lib/constants.ts
+6
src/lib/constants.ts
···
203
203
export const urls = {
204
204
website: {
205
205
blog: {
206
+
findFriendsAnnouncement:
207
+
'https://bsky.social/about/blog/12-16-2025-find-friends',
206
208
initialVerificationAnnouncement: `https://bsky.social/about/blog/04-21-2025-verification`,
207
209
searchTipsAndTricks: 'https://bsky.social/about/blog/05-31-2024-search',
210
+
},
211
+
support: {
212
+
findFriendsPrivacyPolicy:
213
+
'https://bsky.social/about/support/find-friends-privacy-policy',
208
214
},
209
215
},
210
216
}
+2
-1
src/screens/Onboarding/StepFindContactsIntro/index.tsx
+2
-1
src/screens/Onboarding/StepFindContactsIntro/index.tsx
···
4
4
import {useLingui} from '@lingui/react'
5
5
import {useQuery} from '@tanstack/react-query'
6
6
7
+
import {urls} from '#/lib/constants'
7
8
import {atoms as a} from '#/alf'
8
9
import {Admonition} from '#/components/Admonition'
9
10
import {Button, ButtonText} from '#/components/Button'
···
39
40
matching with your contacts. We protect your information and you
40
41
control what happens next.{' '}
41
42
<InlineLinkText
42
-
to="#"
43
+
to={urls.website.blog.findFriendsAnnouncement}
43
44
label={_(
44
45
msg({
45
46
message: `Learn more about importing contacts`,
+2
-2
src/screens/Settings/FindContactsSettings.tsx
+2
-2
src/screens/Settings/FindContactsSettings.tsx
···
12
12
import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query'
13
13
14
14
import {wait} from '#/lib/async/wait'
15
-
import {HITSLOP_10} from '#/lib/constants'
15
+
import {HITSLOP_10, urls} from '#/lib/constants'
16
16
import {isBlockedOrBlocking, isMuted} from '#/lib/moderation/blocked-and-muted'
17
17
import {
18
18
type AllNavigatorParams,
···
125
125
matching with your contacts. We protect your information and you
126
126
control what happens next.{' '}
127
127
<InlineLinkText
128
-
to="#"
128
+
to={urls.website.blog.findFriendsAnnouncement}
129
129
label={_(
130
130
msg({
131
131
message: `Learn more about importing contacts`,