diff --git a/src/types/onyx/Transaction.ts b/src/types/onyx/Transaction.ts index 4326920ab51f..de128d85e6b1 100644 --- a/src/types/onyx/Transaction.ts +++ b/src/types/onyx/Transaction.ts @@ -21,7 +21,7 @@ type Routes = Record; type Transaction = { transactionID: string; amount: number; - category?: string; + category: string; currency: string; reportID: string; comment: Comment; @@ -38,6 +38,7 @@ type Transaction = { state?: ValueOf; }; routes?: Routes; + tag: string; }; export default Transaction;