diff --git a/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx b/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx index 16fc9f562..6bd562105 100644 --- a/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx +++ b/src/components/ModalsContainer/BlueprintModal/Body/Editor/index.tsx @@ -262,7 +262,7 @@ export const Editor = ({ const attributesValue = watch('attributes') const attributes: Attribute[] = useMemo( - () => (isAttributeArray(attributesValue) ? attributesValue : []), + () => (isAttributeArray(attributesValue) ? attributesValue.filter((attr) => attr.key.trim() !== '') : []), [attributesValue], )