diff --git a/packages/app/package.json b/packages/app/package.json
index d1ab52a6a8..738dbc2246 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -33,7 +33,6 @@
"@backstage/plugin-gcalendar": "^0.3.4-next.0",
"@backstage/plugin-gcp-projects": "^0.3.27-next.0",
"@backstage/plugin-github-actions": "^0.5.8-next.0",
- "@backstage/plugin-github-issues": "^0.0.0",
"@backstage/plugin-gocd": "^0.1.14-next.0",
"@backstage/plugin-graphiql": "^0.2.40-next.0",
"@backstage/plugin-home": "^0.4.24-next.0",
diff --git a/packages/app/src/App.tsx b/packages/app/src/App.tsx
index bc1d86b650..289af8d40f 100644
--- a/packages/app/src/App.tsx
+++ b/packages/app/src/App.tsx
@@ -100,7 +100,6 @@ import { techDocsPage } from './components/techdocs/TechDocsPage';
import { ApacheAirflowPage } from '@backstage/plugin-apache-airflow';
import { PermissionedRoute } from '@backstage/plugin-permission-react';
import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common';
-import { GitHubIssuesPage } from '@backstage/plugin-github-issues';
const app = createApp({
apis,
@@ -242,7 +241,6 @@ const routes = (
} />
} />
- } />
);
diff --git a/packages/app/src/components/catalog/EntityPage.tsx b/packages/app/src/components/catalog/EntityPage.tsx
index 166157a2bc..288196266e 100644
--- a/packages/app/src/components/catalog/EntityPage.tsx
+++ b/packages/app/src/components/catalog/EntityPage.tsx
@@ -150,11 +150,6 @@ import {
ReportIssue,
} from '@backstage/plugin-techdocs-module-addons-contrib';
-import {
- GitHubIssuesCard,
- GitHubIssuesPage,
-} from '@backstage/plugin-github-issues';
-
const customEntityFilterKind = ['Component', 'API', 'System'];
const EntityLayoutWrapper = (props: { children?: ReactNode }) => {
@@ -330,10 +325,6 @@ const overviewContent = (
-
-
-
-
@@ -633,9 +624,6 @@ const userPage = (
entityFilterKind={customEntityFilterKind}
/>
-
-
-
@@ -658,14 +646,8 @@ const groupPage = (
-
-
-
-
-
-
);