From d87ab9cad799afc4e1070d6f6a05964bb0727960 Mon Sep 17 00:00:00 2001 From: Matthew Russell Date: Tue, 1 Nov 2022 17:37:18 -0500 Subject: [PATCH] chore: update wallet link in wallet UI (#1918) --- libs/wallet/src/connect-dialog/connect-dialog-elements.tsx | 7 ++----- libs/wallet/src/connect-dialog/connect-dialog.tsx | 2 +- libs/wallet/src/constants.ts | 3 +-- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/libs/wallet/src/connect-dialog/connect-dialog-elements.tsx b/libs/wallet/src/connect-dialog/connect-dialog-elements.tsx index 55ee5f7b8..3c7e89e28 100644 --- a/libs/wallet/src/connect-dialog/connect-dialog-elements.tsx +++ b/libs/wallet/src/connect-dialog/connect-dialog-elements.tsx @@ -1,10 +1,7 @@ import { t } from '@vegaprotocol/react-helpers'; import { Link } from '@vegaprotocol/ui-toolkit'; import type { ReactNode } from 'react'; -import { - VEGA_WALLET_CONCEPTS_URL, - VEGA_WALLET_RELEASE_URL, -} from '../constants'; +import { VEGA_WALLET_CONCEPTS_URL, VEGA_WALLET_URL } from '../constants'; export const ConnectDialogTitle = ({ children }: { children: ReactNode }) => { return ( @@ -28,7 +25,7 @@ export const ConnectDialogFooter = ({ children }: { children?: ReactNode }) => { children ) : ( <> - {t('Get a Vega Wallet')} + {t('Get a Vega Wallet')} {' | '} {t('Having trouble?')} diff --git a/libs/wallet/src/connect-dialog/connect-dialog.tsx b/libs/wallet/src/connect-dialog/connect-dialog.tsx index 8d60f4ecd..143258d69 100644 --- a/libs/wallet/src/connect-dialog/connect-dialog.tsx +++ b/libs/wallet/src/connect-dialog/connect-dialog.tsx @@ -272,7 +272,7 @@ const SelectedForm = ({ {t('hosted wallet')} {t(', or for the real experience create a wallet in the ')} - + {t('Vega wallet app')}

diff --git a/libs/wallet/src/constants.ts b/libs/wallet/src/constants.ts index d968de2a3..9b4b3d9cb 100644 --- a/libs/wallet/src/constants.ts +++ b/libs/wallet/src/constants.ts @@ -1,5 +1,4 @@ -export const VEGA_WALLET_RELEASE_URL = - 'https://github.com/vegaprotocol/vega/releases'; +export const VEGA_WALLET_URL = 'https://vega.xyz/wallet'; export const VEGA_WALLET_CONCEPTS_URL = 'https://docs.vega.xyz/docs/mainnet/concepts/vega-wallet'; export const VEGA_WALLET_HOSTED_URL = 'https://vega-hosted-wallet.on.fleek.co/';