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}
/>