diff --git a/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx b/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx
index 6d58c20700..9ef77a4bbf 100644
--- a/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx
+++ b/plugins/catalog/src/components/EntityLinksCard/LinksGridList.tsx
@@ -15,7 +15,7 @@
*/
import { IconComponent } from '@backstage/core';
-import { Grid, GridList, GridListTile } from '@material-ui/core';
+import { GridList, GridListTile } from '@material-ui/core';
import React from 'react';
import { IconLink } from './IconLink';
import { ColumnBreakpoints } from './types';
@@ -36,21 +36,12 @@ export const LinksGridList = ({ items, cols = undefined }: Props) => {
const numOfCols = useDynamicColumns(cols);
return (
-
-
- {items.map(({ text, href, Icon }, i) => (
-
-
-
- ))}
-
-
+
+ {items.map(({ text, href, Icon }, i) => (
+
+
+
+ ))}
+
);
};