diff --git a/packages/core-data/src/selectors.ts b/packages/core-data/src/selectors.ts index f153122128a859..119538d6f9574a 100644 --- a/packages/core-data/src/selectors.ts +++ b/packages/core-data/src/selectors.ts @@ -732,23 +732,6 @@ export const __experimentalGetDirtyEntityRecords = createSelector( ( state ) => [ state.entities.records ] ); -/** - * Returns the list of dirty entity records. - * - * @param state State tree. - * - * @return The list of updated records - */ -export const __experimentalGetDirtyEntityRecordsEdits = createSelector( - ( state: State ): any => { - const { - entities: { records }, - } = state; - return records.postType.post.edits; - }, - ( state ) => [ state.entities.records ] -); - /** * Returns the list of entities currently being saved. *