Commit 1a6cad4a authored by Vignesh Mohankumar's avatar Vignesh Mohankumar Committed by GitHub

fix: update swap description in about, remove transfer (#5583)

* fix: update swap description in about, remove transfer

* fix
parent 505b3f2a
......@@ -34,7 +34,7 @@ const Step = ({
}: {
index: number
title: string
description?: string
description: string
isLast?: boolean
}) => {
return (
......@@ -42,7 +42,7 @@ const Step = ({
<StepIndex>{index + 1}</StepIndex>
<div>
<StepTitle>{title}</StepTitle>
{description && <StepDescription>{description}</StepDescription>}
<StepDescription>{description}</StepDescription>
</div>
</StyledStep>
)
......
......@@ -219,8 +219,7 @@ export default function About() {
title="Connect a wallet"
description="Connect your preferred crypto wallet to the Uniswap Interface."
/>
<Step index={1} title="Transfer crypto" />
<Step isLast index={2} title="Swap!" />
<Step isLast index={1} title="Swap!" description="Trade crypto and NFTs through Uniswap’s platform" />
</StepList>
</Body>
<IconRow>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment