diff --git a/src/libs/migrations/Participants.ts b/src/libs/migrations/Participants.ts index eccaa0662f2f..74a909379771 100644 --- a/src/libs/migrations/Participants.ts +++ b/src/libs/migrations/Participants.ts @@ -36,8 +36,8 @@ export default function (): Promise { } const collection = Object.entries(reports).reduce((reportsCollection, [onyxKey, report]) => { - // If we have participantAccountIDs then this report is eligible for migration - if (report?.participantAccountIDs) { + // If we have non-empty participantAccountIDs then this report is eligible for migration + if (report?.participantAccountIDs?.length) { const participants: NullishDeep = {}; const deprecatedParticipants = new Set(report.participantAccountIDs);