From 03c4f6a71360f35889e515750ce81bb97f3f77f8 Mon Sep 17 00:00:00 2001 From: Jules Rosser Date: Tue, 6 May 2025 08:16:49 -0700 Subject: [PATCH] disable attendee feature until next release --- src/libs/TransactionUtils/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libs/TransactionUtils/index.ts b/src/libs/TransactionUtils/index.ts index e918182da96b..e43306352be4 100644 --- a/src/libs/TransactionUtils/index.ts +++ b/src/libs/TransactionUtils/index.ts @@ -325,6 +325,7 @@ function isMerchantMissing(transaction: OnyxEntry) { // eslint-disable-next-line @typescript-eslint/no-unused-vars function shouldShowAttendees(iouType: IOUType, policy: OnyxEntry): boolean { + return false; // To be renabled once feature is complete: https://github.com/Expensify/App/issues/44725 // Keep this disabled for per diem expense return iouType === CONST.IOU.TYPE.SUBMIT && !!policy?.id && (policy?.type === CONST.POLICY.TYPE.CORPORATE || policy?.type === CONST.POLICY.TYPE.TEAM);