diff --git a/src/types/onyx/Policy.ts b/src/types/onyx/Policy.ts index bc10ba51e3c9f..b309e9a36d2f3 100644 --- a/src/types/onyx/Policy.ts +++ b/src/types/onyx/Policy.ts @@ -1147,9 +1147,6 @@ type Policy = OnyxCommon.OnyxValueWithOfflineFeedback< /** When the monthly scheduled submit should happen */ autoReportingOffset?: AutoReportingOffset; - /** The accountID of manager who the employee submits their expenses to on paid policies */ - submitsTo?: number; - /** The employee list of the policy */ employeeList?: OnyxTypes.PolicyEmployeeList; diff --git a/tests/utils/LHNTestUtils.tsx b/tests/utils/LHNTestUtils.tsx index bf1a65a788706..33a8678aa1664 100644 --- a/tests/utils/LHNTestUtils.tsx +++ b/tests/utils/LHNTestUtils.tsx @@ -223,7 +223,6 @@ function getFakePolicy(id = '1', name = 'Workspace-Test-001'): Policy { }, autoReportingOffset: 1, preventSelfApproval: true, - submitsTo: 123456, defaultBillable: false, disabledFields: {defaultBillable: true, reimbursable: false}, approvalMode: 'BASIC', diff --git a/tests/utils/collections/policies.ts b/tests/utils/collections/policies.ts index 5507c9e754362..d34a2f6474b59 100644 --- a/tests/utils/collections/policies.ts +++ b/tests/utils/collections/policies.ts @@ -15,7 +15,6 @@ export default function createRandomPolicy(index: number): Policy { }, autoReportingOffset: 1, preventSelfApproval: randBoolean(), - submitsTo: index, outputCurrency: randCurrencyCode(), role: rand(Object.values(CONST.POLICY.ROLE)), owner: randEmail(),