@@ -8,16 +8,7 @@ import { getEnvironmentType } from '../../../../app/scripts/lib/util';
8
8
import { ENVIRONMENT_TYPE_POPUP } from '../../../../shared/constants/app' ;
9
9
import isMobileView from '../../../helpers/utils/is-mobile-view' ;
10
10
import * as actions from '../../../store/actions' ;
11
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
12
- import { mmiActionsFactory } from '../../../store/institutional/institution-background' ;
13
- ///: END:ONLY_INCLUDE_IF
14
-
15
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
16
- import ConfirmRemoveJWT from '../../institutional/confirm-remove-jwt-modal' ;
17
- import CustodyConfirmLink from '../../institutional/custody-confirm-link-modal' ;
18
- import InteractiveReplacementTokenModal from '../../institutional/interactive-replacement-token-modal' ;
19
- import TransactionFailed from '../../institutional/transaction-failed-modal' ;
20
- ///: END:ONLY_INCLUDE_IF
11
+
21
12
import HideTokenConfirmationModal from './hide-token-confirmation-modal' ;
22
13
import QRScanner from './qr-scanner' ;
23
14
@@ -58,34 +49,6 @@ const modalContainerMobileStyle = {
58
49
top : '12.5%' ,
59
50
} ;
60
51
61
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
62
- const custodyConfirmModalStyle = {
63
- mobileModalStyle : {
64
- width : '95%' ,
65
- boxShadow : 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px' ,
66
- borderRadius : '4px' ,
67
- top : '30%' ,
68
- transform : 'none' ,
69
- left : '0' ,
70
- right : '0' ,
71
- margin : '0 auto' ,
72
- } ,
73
- laptopModalStyle : {
74
- width : '360px' ,
75
- boxShadow : 'rgba(0, 0, 0, 0.15) 0px 2px 2px 2px' ,
76
- borderRadius : '4px' ,
77
- top : '30%' ,
78
- transform : 'none' ,
79
- left : '0' ,
80
- right : '0' ,
81
- margin : '0 auto' ,
82
- } ,
83
- contentStyle : {
84
- borderRadius : '4px' ,
85
- } ,
86
- } ;
87
- ///: END:ONLY_INCLUDE_IF
88
-
89
52
const MODALS = {
90
53
NEW_ACCOUNT : {
91
54
contents : < NewAccountModal /> ,
@@ -274,53 +237,6 @@ const MODALS = {
274
237
} ,
275
238
} ,
276
239
277
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
278
- CONFIRM_REMOVE_JWT : {
279
- contents : < ConfirmRemoveJWT /> ,
280
- mobileModalStyle : {
281
- ...modalContainerMobileStyle ,
282
- } ,
283
- laptopModalStyle : {
284
- ...modalContainerLaptopStyle ,
285
- } ,
286
- contentStyle : {
287
- borderRadius : '8px' ,
288
- } ,
289
- } ,
290
-
291
- TRANSACTION_FAILED : {
292
- disableBackdropClick : true ,
293
- contents : < TransactionFailed /> ,
294
- mobileModalStyle : {
295
- ...modalContainerMobileStyle ,
296
- } ,
297
- laptopModalStyle : {
298
- ...modalContainerLaptopStyle ,
299
- } ,
300
- contentStyle : {
301
- borderRadius : '8px' ,
302
- } ,
303
- } ,
304
-
305
- CUSTODY_CONFIRM_LINK : {
306
- contents : < CustodyConfirmLink /> ,
307
- ...custodyConfirmModalStyle ,
308
- } ,
309
-
310
- INTERACTIVE_REPLACEMENT_TOKEN_MODAL : {
311
- contents : < InteractiveReplacementTokenModal /> ,
312
- mobileModalStyle : {
313
- ...modalContainerMobileStyle ,
314
- } ,
315
- laptopModalStyle : {
316
- ...modalContainerLaptopStyle ,
317
- } ,
318
- contentStyle : {
319
- borderRadius : '8px' ,
320
- } ,
321
- } ,
322
- ///: END:ONLY_INCLUDE_IF
323
-
324
240
CONFIRM_TURN_OFF_PROFILE_SYNCING : {
325
241
contents : < ConfirmTurnOffProfileSyncing /> ,
326
242
mobileModalStyle : {
@@ -366,9 +282,6 @@ function mapStateToProps(state) {
366
282
}
367
283
368
284
function mapDispatchToProps ( dispatch ) {
369
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
370
- const mmiActions = mmiActionsFactory ( ) ;
371
- ///: END:ONLY_INCLUDE_IF
372
285
return {
373
286
hideModal : ( customOnHideOpts ) => {
374
287
dispatch ( actions . hideModal ( ) ) ;
@@ -379,10 +292,6 @@ function mapDispatchToProps(dispatch) {
379
292
hideWarning : ( ) => {
380
293
dispatch ( actions . hideWarning ( ) ) ;
381
294
} ,
382
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
383
- setWaitForConfirmDeepLinkDialog : ( wait ) =>
384
- dispatch ( mmiActions . setWaitForConfirmDeepLinkDialog ( wait ) ) ,
385
- ///: END:ONLY_INCLUDE_IF
386
295
} ;
387
296
}
388
297
@@ -399,9 +308,6 @@ class Modal extends Component {
399
308
hideModal : PropTypes . func . isRequired ,
400
309
hideWarning : PropTypes . func . isRequired ,
401
310
modalState : PropTypes . object . isRequired ,
402
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
403
- setWaitForConfirmDeepLinkDialog : PropTypes . func ,
404
- ///: END:ONLY_INCLUDE_IF
405
311
} ;
406
312
407
313
hide ( ) {
@@ -432,11 +338,6 @@ class Modal extends Component {
432
338
keyboard = { false }
433
339
onHide = { ( ) => {
434
340
if ( modal . onHide ) {
435
- ///: BEGIN:ONLY_INCLUDE_IF(build-mmi)
436
- if ( this . props . modalState . name === 'CUSTODY_CONFIRM_LINK' ) {
437
- this . props . setWaitForConfirmDeepLinkDialog ( false ) ;
438
- }
439
- ///: END:ONLY_INCLUDE_IF
440
341
modal . onHide ( {
441
342
hideWarning : this . props . hideWarning ,
442
343
} ) ;
0 commit comments