Skip to content

Commit

Permalink
Merge pull request #487 from soroswap/fix-links
Browse files Browse the repository at this point in the history
Fix links
  • Loading branch information
joaquinsoza authored Jun 25, 2024
2 parents 5e4d0e4 + 11217e2 commit b870ec9
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/components/Swap/PendingModalContent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ function getContent(args: ContentArgs): PendingModalStep {
return {
title: `Wrap ETH`,
subtitle: (
<CustomLink href="https://support.uniswap.org/hc/en-us/articles/16015852009997">
<CustomLink href="https://docs.soroswap.finance/05-tutorial/summary/01-wrapping-stellar-classic-assets">
Why is this required?
</CustomLink>
),
Expand All @@ -170,7 +170,7 @@ function getContent(args: ContentArgs): PendingModalStep {
title: `Setting trustline for ${approvalCurrency?.code ?? 'this token'}`,
subtitle: (
<CustomLink
href="https://support.uniswap.org/hc/en-us/articles/8120520483085"
href="https://developers.stellar.org/docs/learn/fundamentals/stellar-data-structures/accounts#trustlines"
target="_blank"
>
Why is this required?
Expand All @@ -181,14 +181,7 @@ function getContent(args: ContentArgs): PendingModalStep {
case ConfirmModalState.PERMITTING:
return {
title: `Allow ${approvalCurrency?.code ?? 'this token'} to be used for swapping`,
subtitle: (
<CustomLink
href="https://support.uniswap.org/hc/en-us/articles/8120520483085"
target="_blank"
>
Why is this required?
</CustomLink>
),
subtitle: <CustomLink href="#">Why is this required?</CustomLink>,
label: `Proceed in your wallet`,
};
case ConfirmModalState.PENDING_CONFIRMATION: {
Expand Down

0 comments on commit b870ec9

Please sign in to comment.