diff --git a/frontend/src/component/commandBar/CommandPageSuggestions.tsx b/frontend/src/component/commandBar/CommandPageSuggestions.tsx
index 8b4b47e126..1ac5e9c4be 100644
--- a/frontend/src/component/commandBar/CommandPageSuggestions.tsx
+++ b/frontend/src/component/commandBar/CommandPageSuggestions.tsx
@@ -75,15 +75,7 @@ export const CommandPageSuggestions = ({
}}
sx={listItemButtonStyle}
>
- ({
- fontSize: theme.fontSizes.smallBody,
- minWidth: theme.spacing(0.5),
- margin: theme.spacing(0, 1, 0, 0),
- })}
- >
- {item.icon}
-
+ {item.icon}
{item.name}
diff --git a/frontend/src/component/commandBar/CommandPages.tsx b/frontend/src/component/commandBar/CommandPages.tsx
index 6c520b099f..d1e191b7bf 100644
--- a/frontend/src/component/commandBar/CommandPages.tsx
+++ b/frontend/src/component/commandBar/CommandPages.tsx
@@ -49,13 +49,7 @@ export const CommandPages = ({
}}
sx={listItemButtonStyle}
>
- ({
- fontSize: theme.fontSizes.smallBody,
- minWidth: theme.spacing(0.5),
- margin: theme.spacing(0, 1, 0, 0),
- })}
- >
+
diff --git a/frontend/src/component/commandBar/CommandRecent.tsx b/frontend/src/component/commandBar/CommandRecent.tsx
index 178e7303f4..7961407a6c 100644
--- a/frontend/src/component/commandBar/CommandRecent.tsx
+++ b/frontend/src/component/commandBar/CommandRecent.tsx
@@ -4,7 +4,6 @@ import {
RecentlyVisitedPathButton,
RecentlyVisitedProjectButton,
} from './RecentlyVisited/CommandResultGroup';
-import { List } from '@mui/material';
import {
useRecentlyVisited,
type LastViewedPage,
@@ -57,7 +56,7 @@ export const CommandRecent = ({
groupName='Quick suggestions'
onClick={onClick}
>
- {buttons}
+ {buttons}
);
};