diff --git a/invokeai/frontend/webv2/src/features/gallery/ui/galleryBoardGroups.ts b/invokeai/frontend/webv2/src/features/gallery/ui/galleryBoardGroups.ts index 8be176f4769..5dccdce8bb5 100644 --- a/invokeai/frontend/webv2/src/features/gallery/ui/galleryBoardGroups.ts +++ b/invokeai/frontend/webv2/src/features/gallery/ui/galleryBoardGroups.ts @@ -66,8 +66,8 @@ export const getGalleryBoardGroups = ({ const yourBoards = [ ...(projectBoard && matchesBoardSearch(projectBoard) ? [projectBoard] : []), - ...regularBoards.filter((board) => !board.archived), ...(uncategorizedBoard && matchesBoardSearch(uncategorizedBoard) ? [uncategorizedBoard] : []), + ...regularBoards.filter((board) => !board.archived), ]; const hasAnyMatch = yourBoards.length > 0 || dateBoards.length > 0 || archivedBoards.length > 0;