diff --git a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/GalleryBoard.tsx b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/GalleryBoard.tsx
index 7a4779c815..326459d627 100644
--- a/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/GalleryBoard.tsx
+++ b/invokeai/frontend/web/src/features/gallery/components/Boards/BoardsList/GalleryBoard.tsx
@@ -154,7 +154,6 @@ const GalleryBoard = ({ board, isSelected, setBoardToDelete }: GalleryBoardProps
noOfLines={1}
w="fit-content"
wordBreak="break-all"
- // color={isSelected ? 'base.100' : 'base.200'}
fontWeight={isSelected ? 'bold' : 'normal'}
/>
diff --git a/invokeai/frontend/web/src/features/gallery/components/GalleryBoardName.tsx b/invokeai/frontend/web/src/features/gallery/components/GalleryBoardName.tsx
deleted file mode 100644
index 39bea0ab62..0000000000
--- a/invokeai/frontend/web/src/features/gallery/components/GalleryBoardName.tsx
+++ /dev/null
@@ -1,33 +0,0 @@
-import { Flex, Text } from '@invoke-ai/ui-library';
-import { useAppSelector } from 'app/store/storeHooks';
-import { memo } from 'react';
-import { useBoardName } from 'services/api/hooks/useBoardName';
-
-type Props = {
- onClick: () => void;
-};
-
-const GalleryBoardName = (props: Props) => {
- const selectedBoardId = useAppSelector((s) => s.gallery.selectedBoardId);
- const boardName = useBoardName(selectedBoardId);
-
- return (
-
-
- {boardName}
-
-
- );
-};
-
-export default memo(GalleryBoardName);