+1
-1
src/locale/locales/en-GB/messages.po
+1
-1
src/locale/locales/en-GB/messages.po
···
835
835
836
836
#: src/screens/Moderation/index.tsx:423
837
837
msgid "Adult content can only be enabled via the Web at <0>bsky.app</0>."
838
-
msgstr "Adult content can only be enabled via the Web at <0>bsky.app</0>."
838
+
msgstr "Adult content can only be enabled via the Web at <0>social.shatteredsky.net</0>."
839
839
840
840
#: src/components/moderation/LabelPreference.tsx:247
841
841
msgid "Adult content is disabled."
+1
-1
src/locale/locales/en/messages.po
+1
-1
src/locale/locales/en/messages.po
···
839
839
840
840
#: src/screens/Moderation/index.tsx:423
841
841
msgid "Adult content can only be enabled via the Web at <0>bsky.app</0>."
842
-
msgstr ""
842
+
msgstr "Adult content can only be enabled via the Web at <0>social.shatteredsky.net</0>."
843
843
844
844
#: src/components/moderation/LabelPreference.tsx:246
845
845
msgid "Adult content is disabled."
+1
-1
src/screens/Hashtag.tsx
+1
-1
src/screens/Hashtag.tsx
···
53
53
}, [author])
54
54
55
55
const onShare = React.useCallback(() => {
56
-
const url = new URL('https://bsky.app')
56
+
const url = new URL('https://social.shatteredsky.net')
57
57
url.pathname = `/hashtag/${decodeURIComponent(tag)}`
58
58
if (author) {
59
59
url.searchParams.set('author', author)
+3
-2
src/screens/Signup/StepCaptcha/CaptchaWebView.tsx
+3
-2
src/screens/Signup/StepCaptcha/CaptchaWebView.tsx
···
5
5
import {type SignupState} from '#/screens/Signup/state'
6
6
7
7
const ALLOWED_HOSTS = [
8
+
'social.shatteredsky.net',
8
9
'bsky.social',
9
10
'bsky.app',
10
11
'staging.bsky.app',
···
42
43
}, [])
43
44
44
45
const redirectHost = useMemo(() => {
45
-
if (!state?.serviceUrl) return 'bsky.app'
46
+
if (!state?.serviceUrl) return 'social.shatteredsky.net'
46
47
47
48
return state?.serviceUrl &&
48
49
new URL(state?.serviceUrl).host === 'staging.bsky.dev'
49
50
? 'app.staging.bsky.dev'
50
-
: 'bsky.app'
51
+
: 'social.shatteredsky.net'
51
52
}, [state?.serviceUrl])
52
53
53
54
const wasSuccessful = useRef(false)
+1
-1
src/screens/Topic.tsx
+1
-1
src/screens/Topic.tsx
+3
-3
src/view/screens/Storybook/Links.tsx
+3
-3
src/view/screens/Storybook/Links.tsx
···
26
26
</InlineLinkText>
27
27
<InlineLinkText
28
28
label="foo"
29
-
to="https://bsky.app/profile/bsky.app"
29
+
to="https://social.shatteredsky.net/profile/bsky.app"
30
30
style={[a.text_md]}>
31
31
Internal (bsky.app)
32
32
</InlineLinkText>
···
36
36
color="primary"
37
37
size="large"
38
38
label="View @bsky.app's profile"
39
-
to="https://bsky.app/profile/bsky.app">
39
+
to="https://social.shatteredsky.net/profile/bsky.app">
40
40
<ButtonText>Link as a button</ButtonText>
41
41
</Link>
42
42
43
43
<Link
44
44
label="View @bsky.app's profile"
45
-
to="https://bsky.app/profile/bsky.app">
45
+
to="https://social.shatteredsky.net/profile/bsky.app">
46
46
<View
47
47
style={[
48
48
a.flex_row,