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 = ({ ...@@ -34,7 +34,7 @@ const Step = ({
}: { }: {
index: number index: number
title: string title: string
description?: string description: string
isLast?: boolean isLast?: boolean
}) => { }) => {
return ( return (
...@@ -42,7 +42,7 @@ const Step = ({ ...@@ -42,7 +42,7 @@ const Step = ({
<StepIndex>{index + 1}</StepIndex> <StepIndex>{index + 1}</StepIndex>
<div> <div>
<StepTitle>{title}</StepTitle> <StepTitle>{title}</StepTitle>
{description && <StepDescription>{description}</StepDescription>} <StepDescription>{description}</StepDescription>
</div> </div>
</StyledStep> </StyledStep>
) )
......
...@@ -219,8 +219,7 @@ export default function About() { ...@@ -219,8 +219,7 @@ export default function About() {
title="Connect a wallet" title="Connect a wallet"
description="Connect your preferred crypto wallet to the Uniswap Interface." description="Connect your preferred crypto wallet to the Uniswap Interface."
/> />
<Step index={1} title="Transfer crypto" /> <Step isLast index={1} title="Swap!" description="Trade crypto and NFTs through Uniswap’s platform" />
<Step isLast index={2} title="Swap!" />
</StepList> </StepList>
</Body> </Body>
<IconRow> <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