about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAnsh <anshnanda10@gmail.com>2023-10-25 10:00:46 -0700
committerGitHub <noreply@github.com>2023-10-25 10:00:46 -0700
commitc13b6946bab9600cba670478c2f64771cc75f1af (patch)
tree4129b711e635dbe54a1642fb13a228c5b590a8d9 /src
parentee80cae75f25da33f6527c3df16c90319eeaf0bc (diff)
downloadvoidsky-c13b6946bab9600cba670478c2f64771cc75f1af.tar.zst
1721 Update support link (#1722)
* change support page copy

* fix grammar
Diffstat (limited to 'src')
-rw-r--r--src/view/screens/Support.tsx10
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>