Skip to content

Commit

Permalink
1721 Update support link (#1722)
Browse files Browse the repository at this point in the history
* change support page copy

* fix grammar
  • Loading branch information
ansh authored Oct 25, 2023
1 parent ee80cae commit c13b694
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/view/screens/Support.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand All @@ -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:[email protected]"
text="[email protected]"
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>
Expand Down

0 comments on commit c13b694

Please sign in to comment.