@@ -3643,11 +3643,14 @@ const CONST = {
36433643 SELF_SELECT : '__predefined_selfSelect' ,
36443644 } ,
36453645
3646- EXPENSIFY_EMAILS_OBJECT : Object . entries ( EMAIL ) . reduce ( ( prev , [ , email ] ) => {
3647- // eslint-disable-next-line no-param-reassign
3648- prev [ email ] = true ;
3649- return prev ;
3650- } , { } as Record < string , boolean > ) ,
3646+ EXPENSIFY_EMAILS_OBJECT : Object . entries ( EMAIL ) . reduce (
3647+ ( prev , [ , email ] ) => {
3648+ // eslint-disable-next-line no-param-reassign
3649+ prev [ email ] = true ;
3650+ return prev ;
3651+ } ,
3652+ { } as Record < string , boolean > ,
3653+ ) ,
36513654 EXPENSIFY_EMAILS : [
36523655 EMAIL . ACCOUNTING ,
36533656 EMAIL . ACCOUNTS_PAYABLE ,
@@ -5507,15 +5510,12 @@ const CONST = {
55075510 type : 'addAccountingIntegration' ,
55085511 autoCompleted : false ,
55095512 mediaAttributes : {
5510- [ `${ CLOUDFRONT_URL } /${
5511- connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . netsuite ]
5512- } `] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_netsuite.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5513- [ `${ CLOUDFRONT_URL } /${
5514- connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . quickbooksOnline ]
5515- } `] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_qbo.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5516- [ `${ CLOUDFRONT_URL } /${
5517- connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . xero ]
5518- } `] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_xero.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5513+ [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . netsuite ] } ` ] :
5514+ `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_netsuite.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5515+ [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . quickbooksOnline ] } ` ] :
5516+ `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_qbo.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5517+ [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . xero ] } ` ] :
5518+ `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_xero.png" data-expensify-width="1920" data-expensify-height="1080"` ,
55195519 } ,
55205520 title : ( { integrationName, workspaceAccountingLink} ) => `Connect to [${ integrationName } ](${ workspaceAccountingLink } )` ,
55215521 description : ( { integrationName, workspaceAccountingLink} ) =>
0 commit comments