diff --git a/src/libs/E2E/apiMocks/openReport.ts b/src/libs/E2E/apiMocks/openReport.ts index 1d0b5a4c54ac..5b1457d208b6 100644 --- a/src/libs/E2E/apiMocks/openReport.ts +++ b/src/libs/E2E/apiMocks/openReport.ts @@ -43,7 +43,6 @@ export default (): Response => ({ isDeletedParentAction: null, total: 0, currency: 'USD', - submitterPayPalMeAddress: '', chatReportID: null, isWaitingOnBankAccount: false, }, @@ -1963,7 +1962,6 @@ export default (): Response => ({ automatic: true, selected: 'Europe/Kyiv', }, - payPalMeAddress: '', phoneNumber: '', validated: true, }, diff --git a/src/types/onyx/PersonalDetails.ts b/src/types/onyx/PersonalDetails.ts index af559eafd0a1..049a32a80874 100644 --- a/src/types/onyx/PersonalDetails.ts +++ b/src/types/onyx/PersonalDetails.ts @@ -71,9 +71,6 @@ type PersonalDetails = { /** Status of the current user from their personal details */ status?: string; - - /** PayPalMe address of the current user */ - payPalMeAddress?: string; }; export default PersonalDetails; diff --git a/src/types/onyx/Report.ts b/src/types/onyx/Report.ts index a077bf1a3281..ef21b08793d6 100644 --- a/src/types/onyx/Report.ts +++ b/src/types/onyx/Report.ts @@ -64,9 +64,6 @@ type Report = { /** Whether the parent action was deleted */ isDeletedParentAction?: boolean; - /** PayPalMe address of the submitter */ - submitterPayPalMeAddress?: string; - /** Linked policy's ID */ policyID?: string;