Skip to content

Commit

Permalink
fix(control center): change action of swap button
Browse files Browse the repository at this point in the history
  • Loading branch information
quanpt239 committed Oct 2, 2024
1 parent 18d172e commit 0f4b1a2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/ControlCenter/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import cn from 'classnames/bind';
import { useState, useEffect } from 'react';
import { isMobile } from '@walletconnect/browser-utils';
import { Link } from 'react-router-dom';

import Background from 'assets/images/bg-control-center.jpg';
import { ReactComponent as ArrowRight } from 'assets/icons/arrow-right-2.svg';
Expand Down Expand Up @@ -92,9 +93,7 @@ const ControlCenter = () => {
))}
<div className={cx('tokens-wrapper')}>
<div style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', width: '100%' }}>
<a href="https://app.oraidex.io/universalswap" target="blank" style={{ color: '#B798EA' }}>
Swap
</a>
<Link to="/" style={{ color: '#B798EA' }}>Swap</Link>
</div>
</div>
</div>
Expand Down

0 comments on commit 0f4b1a2

Please sign in to comment.