From 156d81d4eb2a938b897e8792a92c4dc7915959e0 Mon Sep 17 00:00:00 2001 From: Francois Laithier Date: Thu, 15 Jan 2026 15:08:27 -0800 Subject: [PATCH] Restore default attendee tracking flag for legacy policies --- src/libs/TransactionUtils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/TransactionUtils/index.ts b/src/libs/TransactionUtils/index.ts index e8a0011a2da7d..5d1858e273467 100644 --- a/src/libs/TransactionUtils/index.ts +++ b/src/libs/TransactionUtils/index.ts @@ -541,7 +541,7 @@ function shouldShowAttendees(iouType: IOUType, policy: OnyxEntry): boole // For backwards compatibility with Expensify Classic, we assume that Attendee Tracking is enabled by default on // Control policies if the policy does not contain the attribute - return policy?.isAttendeeTrackingEnabled ?? false; + return policy?.isAttendeeTrackingEnabled ?? true; } /**