@@ -3643,14 +3643,11 @@ const CONST = {
36433643 SELF_SELECT : '__predefined_selfSelect' ,
36443644 } ,
36453645
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- ) ,
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 > ) ,
36543651 EXPENSIFY_EMAILS : [
36553652 EMAIL . ACCOUNTING ,
36563653 EMAIL . ACCOUNTS_PAYABLE ,
@@ -5510,9 +5507,15 @@ const CONST = {
55105507 type : 'addAccountingIntegration' ,
55115508 autoCompleted : false ,
55125509 mediaAttributes : {
5513- [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . netsuite ] } ` ] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_netsuite.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5514- [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . quickbooksOnline ] } ` ] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_qbo.png" data-expensify-width="1920" data-expensify-height="1080"` ,
5515- [ `${ CLOUDFRONT_URL } /${ connectionsVideoPaths [ ONBOARDING_ACCOUNTING_MAPPING . xero ] } ` ] : `data-expensify-thumbnail-url="${ CLOUDFRONT_URL } /images/walkthrough-connect_to_xero.png" data-expensify-width="1920" data-expensify-height="1080"` ,
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"` ,
55165519 } ,
55175520 title : ( { integrationName, workspaceAccountingLink} ) => `Connect to [${ integrationName } ](${ workspaceAccountingLink } )` ,
55185521 description : ( { integrationName, workspaceAccountingLink} ) =>
0 commit comments