Skip to content

Commit

Permalink
update(swap): add zendesk real link (#2801)
Browse files Browse the repository at this point in the history
  • Loading branch information
SorinC6 authored Oct 19, 2023
1 parent 0527ac3 commit 83dba11
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import {Linking, StyleSheet, Text, TouchableOpacity} from 'react-native'

import {useStrings} from '../strings'

const SWAP_ZENDESK_LINK = 'https://emurgohelpdesk.zendesk.com/hc/en-us/sections/8154256843407-Swap'

export const SwapInfoLink = () => {
const strings = useStrings()
return (
// TODO: add real link
<TouchableOpacity onPress={() => Linking.openURL('https://yoroi-wallet.com/#/')} style={styles.link}>
<TouchableOpacity onPress={() => Linking.openURL(SWAP_ZENDESK_LINK)} style={styles.link}>
<Text style={styles.linkText}>{strings.listOrdersSheetLink}</Text>
</TouchableOpacity>
)
Expand Down

0 comments on commit 83dba11

Please sign in to comment.