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 125e2a93c1..235105d21d 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
@@ -25,6 +25,14 @@ const editableInputStyles: SystemStyleObject = {
},
};
+const ArchivedIcon = () => {
+ return (
+
+
+
+ );
+};
+
interface GalleryBoardProps {
board: BoardDTO;
isSelected: boolean;
@@ -135,25 +143,7 @@ const GalleryBoard = ({ board, isSelected, setBoardToDelete }: GalleryBoardProps
cursor="pointer"
bg="base.800"
>
- {board.archived && (
-
-
-
- )}
+ {board.archived && }
{coverImage?.thumbnail_url ? (