Skip to content

Commit

Permalink
hopefully last one
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonals committed Mar 15, 2024
1 parent 5604d9f commit 1341932
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libs/actions/IOU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ function createSplitsAndOnyxData(
tag: string,
existingSplitChatReportID = '',
billable = false,
iouRequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
iouRequestType: IOURequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
): SplitsAndOnyxData {
const currentUserEmailForIOUSplit = PhoneNumber.addSMSDomainIfPhoneNumber(currentUserLogin);
const participantAccountIDs = participants.map((participant) => Number(participant.accountID));
Expand Down Expand Up @@ -2041,7 +2041,7 @@ function splitBill(
tag: string,
existingSplitChatReportID = '',
billable = false,
iouRequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
iouRequestType: IOURequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
) {
const currentCreated = DateUtils.enrichMoneyRequestTimestamp(created);
const {splitData, splits, onyxData} = createSplitsAndOnyxData(
Expand Down Expand Up @@ -2099,7 +2099,7 @@ function splitBillAndOpenReport(
category: string,
tag: string,
billable: boolean,
iouRequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
iouRequestType: IOURequestType = CONST.IOU.REQUEST_TYPE.MANUAL,
) {
const currentCreated = DateUtils.enrichMoneyRequestTimestamp(created);
const {splitData, splits, onyxData} = createSplitsAndOnyxData(
Expand Down

0 comments on commit 1341932

Please sign in to comment.