diff --git a/apps/wallet-mobile/src/features/Swap/common/SwapInfoLink/SwapInfoLink.tsx b/apps/wallet-mobile/src/features/Swap/common/SwapInfoLink/SwapInfoLink.tsx index 899bf1b651..3201d2bef7 100644 --- a/apps/wallet-mobile/src/features/Swap/common/SwapInfoLink/SwapInfoLink.tsx +++ b/apps/wallet-mobile/src/features/Swap/common/SwapInfoLink/SwapInfoLink.tsx @@ -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 - Linking.openURL('https://yoroi-wallet.com/#/')} style={styles.link}> + Linking.openURL(SWAP_ZENDESK_LINK)} style={styles.link}> {strings.listOrdersSheetLink} )