Skip to content

Commit 6499934

Browse files
authored
Aizad/WALL-3966/Back Arrow Incorrect Placement fix (deriv-com#14992)
* chore: replace icon with the right one * chore: replace icon for dynamic leverage
1 parent 4514a74 commit 6499934

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/wallets/src/features/cfd/screens/DynamicLeverage/DynamicLeverageTitle.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { FC } from 'react';
2-
import { LegacyArrowRight2pxIcon } from '@deriv/quill-icons';
2+
import { LegacyArrowLeft2pxIcon } from '@deriv/quill-icons';
33
import { WalletText } from '../../../../components';
44
import useDevice from '../../../../hooks/useDevice';
55
import { useDynamicLeverageModalState } from '../../components/DynamicLeverageContext';
@@ -12,7 +12,7 @@ export const DynamicLeverageTitle: FC = () => {
1212

1313
return (
1414
<div className='wallets-dynamic-leverage-screen__title'>
15-
<LegacyArrowRight2pxIcon
15+
<LegacyArrowLeft2pxIcon
1616
className='wallets-dynamic-leverage-screen__title-back'
1717
data-testid='back_icon'
1818
iconSize='xs'

packages/wallets/src/features/cfd/screens/Jurisdiction/JurisdictionCard/JurisdictionCardBack.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { Dispatch, FC, SetStateAction } from 'react';
2-
import { LegacyArrowRight2pxIcon } from '@deriv/quill-icons';
2+
import { LegacyArrowLeft2pxIcon } from '@deriv/quill-icons';
33
import { WalletText } from '../../../../../components/Base/WalletText';
44
import IdCardIcon from '../../../../../public/images/ic-id-card.svg';
55
import DocumentIcon from '../../../../../public/images/ic-id-number.svg';
@@ -40,7 +40,7 @@ const JurisdictionCardBack: FC<TJurisdictionCardBackProps> = ({ setIsFlipped, ve
4040
if (verificationDocs)
4141
return (
4242
<div className='wallets-jurisdiction-card-back'>
43-
<LegacyArrowRight2pxIcon
43+
<LegacyArrowLeft2pxIcon
4444
className='wallets-jurisdiction-card-back__icon'
4545
iconSize='xs'
4646
onClick={e => {

0 commit comments

Comments
 (0)