Skip to content

Commit

Permalink
Merge pull request #27674 from Expensify/amy-tag-transaction
Browse files Browse the repository at this point in the history
Update Transaction with new field definitions
  • Loading branch information
puneetlath authored Sep 20, 2023
2 parents 29e03d6 + af272b9 commit 05a5591
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types/onyx/Transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Routes = Record<string, Route>;
type Transaction = {
transactionID: string;
amount: number;
category?: string;
category: string;
currency: string;
reportID: string;
comment: Comment;
Expand All @@ -38,6 +38,7 @@ type Transaction = {
state?: ValueOf<typeof CONST.IOU.RECEIPT_STATE>;
};
routes?: Routes;
tag: string;
};

export default Transaction;

0 comments on commit 05a5591

Please sign in to comment.