From d48d094672540a6f93f35cd11db181a1e2ffa48d Mon Sep 17 00:00:00 2001 From: Pierre Dommerc Date: Thu, 8 Dec 2022 15:54:33 +0100 Subject: [PATCH] Wallet - Buy, copy changes (#1855) --- nym-wallet/src/components/Buy/Tutorial.tsx | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/nym-wallet/src/components/Buy/Tutorial.tsx b/nym-wallet/src/components/Buy/Tutorial.tsx index a6bd95c557..5f14e2c444 100644 --- a/nym-wallet/src/components/Buy/Tutorial.tsx +++ b/nym-wallet/src/components/Buy/Tutorial.tsx @@ -16,7 +16,6 @@ const TutorialStep = ({ icon, borderRight, borderBottom, - fixTitleHeight, }: { step: number; title: string; @@ -24,7 +23,6 @@ const TutorialStep = ({ icon: React.ReactNode; borderRight?: boolean; borderBottom?: boolean; - fixTitleHeight?: boolean; }) => ( - + {title} {text} @@ -61,7 +53,6 @@ export const Tutorial = () => { const [showSignModal, setShowSignModal] = useState(false); const theme = useTheme(); const showBorder = useMediaQuery(theme.breakpoints.up('md')); - const fixTitleHeight = useMediaQuery(theme.breakpoints.down('lg')); return ( @@ -96,11 +87,10 @@ export const Tutorial = () => { } borderRight={showBorder} borderBottom={!showBorder} - fixTitleHeight={fixTitleHeight} /> } text={ t.palette.nym.text.muted }}> @@ -113,19 +103,17 @@ export const Tutorial = () => { } borderRight={showBorder} borderBottom={!showBorder} - fixTitleHeight={fixTitleHeight} /> } text={ t.palette.nym.text.muted }}> - Send BTC to the given address. When the transaction is confirmed your purchased NYM tokens will be - transferred in your wallet. + {`Send the defined BTC amount to Bity's address that's given to you. As soon as your BTC transaction has 4 + confirmations, Bity will send the purchased NYM tokens to your wallet.`} } - fixTitleHeight={fixTitleHeight} />