diff --git a/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx b/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
index 4e338b5205..04584f688a 100644
--- a/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
+++ b/plugins/catalog/src/components/CatalogTable/CatalogTable.tsx
@@ -34,6 +34,7 @@ import {
useEntityList,
useStarredEntities,
} from '@backstage/plugin-catalog-react';
+import Typography from '@material-ui/core/Typography';
import { withStyles } from '@material-ui/core/styles';
import { visuallyHidden } from '@mui/utils';
import Edit from '@material-ui/icons/Edit';
@@ -146,8 +147,7 @@ export const CatalogTable = (props: CatalogTableProps) => {
return {
icon: () => (
<>
- {/* eslint-disable-next-line react/forbid-elements */}
- {title}
+ {title}
>
),
@@ -166,8 +166,7 @@ export const CatalogTable = (props: CatalogTableProps) => {
return {
icon: () => (
<>
- {/* eslint-disable-next-line react/forbid-elements */}
- {title}
+ {title}
>
),
@@ -187,8 +186,7 @@ export const CatalogTable = (props: CatalogTableProps) => {
cellStyle: { paddingLeft: '1em' },
icon: () => (
<>
- {/* eslint-disable-next-line react/forbid-elements */}
- {title}
+ {title}
{isStarred ? : }
>
),