- {tagsLoading && (
-
-
-
- )}
- {tags.map((thisTag) => {
- return (
-
handleDeleteTag(thisTag)}
- />
- );
- })}
- {(tagError.length > 0 || userTagsErrorDisplay.length > 0) && (
-
- {tagError.length > 0 ? tagError : userTagsErrorDisplay}
-
- )}
-
- >
- );
-};
diff --git a/packages/manager/src/components/TagsPanel/TagsPanelItem.tsx b/packages/manager/src/components/TagsPanel/TagsPanelItem.tsx
deleted file mode 100644
index 7d61536356d..00000000000
--- a/packages/manager/src/components/TagsPanel/TagsPanelItem.tsx
+++ /dev/null
@@ -1,42 +0,0 @@
-import * as React from 'react';
-
-import { Tag, TagProps } from 'src/components/Tag/Tag';
-
-interface Props extends TagProps {
- loading: boolean;
- onDelete?: (tag: string) => void;
- tagLabel: string;
-}
-
-type CombinedProps = Props;
-
-/*
- * Abstraction of the Tag component for the purposes of passing the
- * delete payload to the onDelete function
- */
-class TagsPanelItem extends React.Component