diff --git a/src/types/onyx/Report.ts b/src/types/onyx/Report.ts index cb02c5f5751a..1241556c8dbd 100644 --- a/src/types/onyx/Report.ts +++ b/src/types/onyx/Report.ts @@ -193,9 +193,6 @@ type Report = OnyxCommon.OnyxValueWithOfflineFeedback< /** Account ID of the report owner */ ownerAccountID?: number; - /** E-mail of the report owner */ - ownerEmail?: string; - /** Collection of report participants, indexed by their accountID */ participants?: Participants; diff --git a/tests/utils/collections/optionData.ts b/tests/utils/collections/optionData.ts index 2bf0c841b985..f3360361962d 100644 --- a/tests/utils/collections/optionData.ts +++ b/tests/utils/collections/optionData.ts @@ -49,6 +49,5 @@ export default function createRandomOptionData(index: number): OptionData { lastVisibleActionLastModified: new Date().toISOString(), lastActorAccountID: randNumber(), ownerAccountID: randNumber(), - ownerEmail: randEmail(), }; }