diff --git a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/epm/routes.tsx b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/epm/routes.tsx
deleted file mode 100644
index 69d4de0b469d8..0000000000000
--- a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/epm/routes.tsx
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import React from 'react';
-import { Route } from 'react-router-dom';
-// import { PLUGIN } from '../common/constants';
-// import { Detail, DetailProps } from './screens/detail';
-import { Home } from './screens/home';
-
-// patterns are used by React Router and are relative to `APP_ROOT`
-// XXX does nesting react routers like this even work?
-export const patterns = {
- APP_ROOT: `/app/ingestManager#/epm`,
- LIST_VIEW: '/',
- // DETAIL_VIEW: '/detail/:pkgkey/:panel?',
-};
-
-// export const routes = [
-// ,
-// }
-// />,
-// ];
-
-export const routes = [
- ,
-];
-
-// interface DetailMatch {
-// match: {
-// params: DetailProps;
-// };
-// }