Skip to content

Commit f0d8a85

Browse files
committed
Fix spellcheck and typecheck CI failures
1 parent b0b9a64 commit f0d8a85

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/libs/actions/IOU/BulkEdit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function updateMultipleMoneyRequests({
150150
// For plain IOU transactions these fields are not applicable and must be silently skipped.
151151
const supportsExpenseFields = isUnreportedExpense || isFromExpenseReport || isInvoiceReportReportUtils(baseIouReport ?? undefined);
152152
// Split children must keep their amount/currency/tax in sync with the split parent's totals.
153-
// Allow coding fields (category, tag, merchant, etc.) but block these so we never desync the split.
153+
// Allow coding fields (category, tag, merchant, etc.) but block these so we never put the split out of sync.
154154
const isSplitChild = transaction.comment?.source === CONST.IOU.TYPE.SPLIT;
155155
// Use the transaction's own policy for all per-transaction checks (permissions, tax, change-diffing).
156156
// Falls back to the shared bulk-edit policy when the transaction's workspace cannot be resolved.

tests/actions/IOUTest/BulkEditTest.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1147,6 +1147,8 @@ describe('actions/IOU/BulkEdit', () => {
11471147
hash: undefined,
11481148
introSelected: undefined,
11491149
betas: undefined,
1150+
currentUserLogin: 'test@example.com',
1151+
currentUserAccountID: 1,
11501152
});
11511153

11521154
expect(writeSpy).toHaveBeenCalled();

0 commit comments

Comments
 (0)