diff --git a/src/Components/ImagesTable/ImagesTable.tsx b/src/Components/ImagesTable/ImagesTable.tsx index 0afa06cf..73c0a020 100644 --- a/src/Components/ImagesTable/ImagesTable.tsx +++ b/src/Components/ImagesTable/ImagesTable.tsx @@ -558,6 +558,7 @@ const Row = ({ const [isExpanded, setIsExpanded] = useState(false); const handleToggle = () => setIsExpanded(!isExpanded); const dispatch = useDispatch(); + const selectedBlueprintId = useAppSelector(selectSelectedBlueprintId); const handleClick = ({ blueprintId, @@ -580,7 +581,7 @@ const Row = ({ }} /> - {compose.blueprint_id ? ( + {compose.blueprint_id && !selectedBlueprintId ? (