diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-10-26 10:40:35 -0700 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-10-26 10:40:35 -0700 |
commit | a1a61ef2e5d9d36877c7078580572ae70e468a4a (patch) | |
tree | 90878708e958bf268d86b2fa653017b141637e67 /src/view/screens/Support.tsx | |
parent | 01e25c912cb156aa4a2c34ddef8206d045ee2b89 (diff) | |
parent | 927cee18d9c4425398e90811d4ed24098bf67396 (diff) | |
download | voidsky-a1a61ef2e5d9d36877c7078580572ae70e468a4a.tar.zst |
Merge branch 'main' of github.com:bluesky-social/social-app into main
Diffstat (limited to 'src/view/screens/Support.tsx')
-rw-r--r-- | src/view/screens/Support.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/screens/Support.tsx b/src/view/screens/Support.tsx index de1b38b84..dc00d473d 100644 --- a/src/view/screens/Support.tsx +++ b/src/view/screens/Support.tsx @@ -9,6 +9,7 @@ import {TextLink} from 'view/com/util/Link' import {CenteredView} from 'view/com/util/Views' import {usePalette} from 'lib/hooks/usePalette' import {s} from 'lib/styles' +import {HELP_DESK_URL} from 'lib/constants' type Props = NativeStackScreenProps<CommonNavigatorParams, 'Support'> export const SupportScreen = (_props: Props) => { @@ -29,14 +30,13 @@ export const SupportScreen = (_props: Props) => { Support </Text> <Text style={[pal.text, s.p20]}> - If you need help, email us at{' '} + The support form has been moved. If you need help, please <TextLink - href="mailto:support@bsky.app" - text="support@bsky.app" + href={HELP_DESK_URL} + text=" click here" style={pal.link} />{' '} - with a description of your issue and information about how we can help - you. + or visit {HELP_DESK_URL} to get in touch with us. </Text> </CenteredView> </View> |