From 78cd200d3f6c59e0543b67405542f81844de33bb Mon Sep 17 00:00:00 2001 From: Tim Golen Date: Tue, 26 Sep 2023 09:00:25 +0800 Subject: [PATCH] Add pending fields to transaction type --- src/types/onyx/Transaction.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/onyx/Transaction.ts b/src/types/onyx/Transaction.ts index 8327c866df0f..04fcaf242975 100644 --- a/src/types/onyx/Transaction.ts +++ b/src/types/onyx/Transaction.ts @@ -38,6 +38,9 @@ type Transaction = { modifiedCreated?: string; modifiedCurrency?: string; pendingAction: OnyxCommon.PendingAction; + pendingFields: { + comment: string; + }; receipt: { receiptID?: number; source?: string;