diff --git a/plugins/git-release-manager/src/features/Features.tsx b/plugins/git-release-manager/src/features/Features.tsx
index 0fa5ded36d..69b255c1ee 100644
--- a/plugins/git-release-manager/src/features/Features.tsx
+++ b/plugins/git-release-manager/src/features/Features.tsx
@@ -29,7 +29,6 @@ import { useProjectContext } from '../contexts/ProjectContext';
import { useVersioningStrategyMatchesRepoTags } from '../hooks/useVersioningStrategyMatchesRepoTags';
import { validateTagName } from '../helpers/tagParts/validateTagName';
-import { Box } from '@material-ui/core';
import { ErrorBoundary, Progress } from '@backstage/core-components';
import { useApi } from '@backstage/core-plugin-api';
@@ -99,7 +98,9 @@ export function Features({
}) ?? null;
if (Array.isArray(CustomFeatures)) {
CustomFeatures = CustomFeatures.map((CustomFeature, index) => (
- {CustomFeature}
+
+ {CustomFeature}
+
));
}