From 5d2f3d724cdff65c025df9233dfc730638ce38a9 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Sat, 2 Sep 2023 01:18:15 +0800 Subject: [PATCH] Add category field as optional for now to the Transaction --- src/types/onyx/Transaction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/onyx/Transaction.ts b/src/types/onyx/Transaction.ts index 5a12dba352fc..9e6cd603472f 100644 --- a/src/types/onyx/Transaction.ts +++ b/src/types/onyx/Transaction.ts @@ -9,6 +9,7 @@ type Comment = { type Transaction = { transactionID: string; amount: number; + category?: string; currency: string; reportID: string; comment: Comment;