@@ -2708,7 +2708,7 @@ describe('actions/IOU', () => {
27082708 originalTransactionID : transaction . transactionID ,
27092709 } ,
27102710 } ;
2711- saveSplitTransactions ( draftTransaction , 1 , undefined , undefined ) ;
2711+ saveSplitTransactions ( draftTransaction , 1 , undefined , undefined , [ ] ) ;
27122712
27132713 await waitForBatchedUpdates ( ) ;
27142714
@@ -2767,7 +2767,7 @@ describe('actions/IOU', () => {
27672767
27682768 // When splitting the expense
27692769 const hash = 1 ;
2770- saveSplitTransactions ( draftTransaction , hash , undefined , undefined ) ;
2770+ saveSplitTransactions ( draftTransaction , hash , undefined , undefined , [ ] ) ;
27712771
27722772 await waitForBatchedUpdates ( ) ;
27732773
@@ -2841,7 +2841,7 @@ describe('actions/IOU', () => {
28412841
28422842 // When splitting the expense
28432843 const hash = 1 ;
2844- saveSplitTransactions ( draftTransaction , hash , undefined , undefined ) ;
2844+ saveSplitTransactions ( draftTransaction , hash , undefined , undefined , [ ] ) ;
28452845
28462846 await waitForBatchedUpdates ( ) ;
28472847
@@ -5566,7 +5566,7 @@ describe('actions/IOU', () => {
55665566 await Onyx . merge ( `${ ONYXKEYS . COLLECTION . REPORT } ${ transactionThreadReportID } ` , { reportID : transactionThreadReportID } ) ;
55675567
55685568 // When updating a money request category
5569- updateMoneyRequestCategory ( transactionID , transactionThreadReportID , category , fakePolicy , undefined , undefined ) ;
5569+ updateMoneyRequestCategory ( transactionID , transactionThreadReportID , category , fakePolicy , undefined , undefined , [ ] ) ;
55705570
55715571 await waitForBatchedUpdates ( ) ;
55725572
@@ -5631,7 +5631,7 @@ describe('actions/IOU', () => {
56315631 await Onyx . merge ( `${ ONYXKEYS . COLLECTION . POLICY } ${ policyID } ` , fakePolicy ) ;
56325632
56335633 // When updating a money request category
5634- updateMoneyRequestCategory ( transactionID , '3' , category , fakePolicy , undefined , undefined ) ;
5634+ updateMoneyRequestCategory ( transactionID , '3' , category , fakePolicy , undefined , undefined , [ ] ) ;
56355635
56365636 await waitForBatchedUpdates ( ) ;
56375637
@@ -5663,7 +5663,7 @@ describe('actions/IOU', () => {
56635663 await Onyx . merge ( `${ ONYXKEYS . COLLECTION . POLICY } ${ policyID } ` , fakePolicy ) ;
56645664
56655665 // When updating the money request category
5666- updateMoneyRequestCategory ( transactionID , '3' , category , fakePolicy , undefined , undefined ) ;
5666+ updateMoneyRequestCategory ( transactionID , '3' , category , fakePolicy , undefined , undefined , [ ] ) ;
56675667
56685668 await waitForBatchedUpdates ( ) ;
56695669
@@ -7205,7 +7205,7 @@ describe('actions/IOU', () => {
72057205 } ,
72067206 } ;
72077207
7208- saveSplitTransactions ( draftTransaction , - 2 , undefined , undefined ) ;
7208+ saveSplitTransactions ( draftTransaction , - 2 , undefined , undefined , [ ] ) ;
72097209 await waitForBatchedUpdates ( ) ;
72107210
72117211 const split1 = await getOnyxValue ( `${ ONYXKEYS . COLLECTION . TRANSACTION } 235` ) ;
@@ -7305,7 +7305,7 @@ describe('actions/IOU', () => {
73057305 } ,
73067306 } ;
73077307
7308- saveSplitTransactions ( draftTransaction , - 2 , undefined , undefined ) ;
7308+ saveSplitTransactions ( draftTransaction , - 2 , undefined , undefined , [ ] ) ;
73097309 await waitForBatchedUpdates ( ) ;
73107310
73117311 const split1 = await getOnyxValue ( `${ ONYXKEYS . COLLECTION . TRANSACTION } 235` ) ;
0 commit comments