Skip to content

Commit 3758f70

Browse files
committed
Hotfix: Incorrect logo placement for QUICK(OLD) and QUICK(NEW) in convert page
1 parent 01353f1 commit 3758f70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/ConvertQUICKPage/ConvertQUICKPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React, { useEffect, useMemo, useState } from 'react';
22
import { TransactionResponse } from '@ethersproject/providers';
33
import { Box, Button, CircularProgress } from '@material-ui/core';
44
import { Trans, useTranslation } from 'react-i18next';
5-
import QUICKIcon from 'assets/images/quickIcon.svg';
6-
import { ReactComponent as QUICKV2Icon } from 'assets/images/QUICKV2.svg';
5+
import QUICKIcon from 'assets/images/QUICKV2.svg';
6+
import QUICKV2Icon from 'assets/images/quickIcon.svg';
77
import { ArrowForward, ArrowDownward } from '@material-ui/icons';
88
import {
99
NumericalInput,
@@ -174,7 +174,7 @@ const ConvertQUICKPage: React.FC<ConvertQUICKPageProps> = ({ isWidget }) => {
174174
<ArrowForward />
175175
</Box>
176176
<Box className='iconWrapper'>
177-
<QUICKV2Icon />
177+
<img src={QUICKV2Icon} alt='QUICK' />
178178
</Box>
179179
<p className='weight-600'>QUICK(NEW)</p>
180180
</Box>

0 commit comments

Comments
 (0)