Skip to content

Commit

Permalink
fix ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nkdengineer committed Feb 5, 2025
1 parent f7b308d commit 46d1920
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/libs/API/parameters/AddTrackedExpenseToPolicyParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type AddTrackedExpenseToPolicyParams = {
customUnitRateID?: string;
policyID: string;
transactionID: string;
actionableWhisperReportActionID: string;
actionableWhisperReportActionID: string | undefined;
moneyRequestReportID: string;
reportPreviewReportActionID: string;
modifiedExpenseReportActionID: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type ConvertTrackedExpenseToRequestParams = {
payerAccountID: number;
chatReportID: string;
transactionID: string;
actionableWhisperReportActionID: string;
actionableWhisperReportActionID: string | undefined;
createdChatReportActionID?: string;
moneyRequestReportID: string;
moneyRequestCreatedReportActionID: string | undefined;
Expand Down
4 changes: 2 additions & 2 deletions src/libs/actions/IOU.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4157,7 +4157,7 @@ type AddTrackedExpenseToPolicyParam = {
merchant: string;
transactionID: string;
reimbursable: boolean;
actionableWhisperReportActionID: string;
actionableWhisperReportActionID: string | undefined;
moneyRequestReportID: string;
reportPreviewReportActionID: string;
modifiedExpenseReportActionID: string;
Expand All @@ -4174,7 +4174,7 @@ function convertTrackedExpenseToRequest(
payerEmail: string,
chatReportID: string,
transactionID: string,
actionableWhisperReportActionID: string,
actionableWhisperReportActionID: string | undefined,
createdChatReportActionID: string | undefined,
moneyRequestReportID: string,
moneyRequestCreatedReportActionID: string | undefined,
Expand Down

0 comments on commit 46d1920

Please sign in to comment.