Skip to content

Commit bb1288f

Browse files
fix: APP-865 remove isFullScreenMobile prop
1 parent e915e0f commit bb1288f

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

web-components/src/components/modal/TxModal.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ const TxModal: React.FC<React.PropsWithChildren<TxModalProps>> = ({
136136
txHash,
137137
txHashUrl,
138138
linkComponent,
139-
isFullscreenMobile,
140139
buttonLink,
141140
socialItems,
142141
blockchainRecordText,
@@ -154,7 +153,6 @@ const TxModal: React.FC<React.PropsWithChildren<TxModalProps>> = ({
154153
<Modal
155154
open={open}
156155
onClose={onClose}
157-
isFullscreenMobile={isFullscreenMobile}
158156
className={cn(styles.root, classes?.root)}
159157
>
160158
{header}

web-marketplace/src/legacy-pages/Dashboard/MyEcocredits/MyEcocredits.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,6 @@ export const MyEcocredits = (): JSX.Element => {
666666
seeLessText={_(SEE_LESS)}
667667
open={true}
668668
onClose={handleTxModalClose}
669-
isFullscreenMobile={false}
670669
txHash={txHash ?? ''}
671670
txHashUrl={txHashUrl}
672671
title={txModalHeader ?? _(TX_SUCCESSFUL_MODAL_TITLE)}
@@ -693,7 +692,6 @@ export const MyEcocredits = (): JSX.Element => {
693692
error={error ?? ''}
694693
open={!!error}
695694
onClose={handleTxModalClose}
696-
isFullscreenMobile={false}
697695
txHash={txHash || ''}
698696
txHashUrl={txHashUrl}
699697
cardTitle={txModalTitle ?? ''}

0 commit comments

Comments
 (0)