2
0
visuddhinanda 2 жил өмнө
parent
commit
4a3c752202

+ 1 - 6
dashboard/src/components/tag/TagsArea.tsx

@@ -34,12 +34,7 @@ const TagsAreaWidget = ({
 
   const currTags = tags?.map((item, id) => {
     return id < max ? (
-      <Tag
-        key={id}
-        color={"#" + numToHex(item.color ?? 13684944)}
-        closable
-        onClose={() => {}}
-      >
+      <Tag key={id} color={"#" + numToHex(item.color ?? 13684944)}>
         {item.name}
       </Tag>
     ) : undefined;