diff --git a/ui/src/telegrafs/components/CollectorCard.tsx b/ui/src/telegrafs/components/CollectorCard.tsx index 09a3c242bbb..ee80db16abf 100644 --- a/ui/src/telegrafs/components/CollectorCard.tsx +++ b/ui/src/telegrafs/components/CollectorCard.tsx @@ -133,21 +133,13 @@ class CollectorRow extends PureComponent { } private handleAddLabel = async (label: Label) => { -<<<<<<< HEAD - const {collector, onAddLabels} = this.props -======= const {collector, onAddLabel} = this.props ->>>>>>> feat(ui): completed feature await onAddLabel(collector.id, label) } private handleRemoveLabel = async (label: Label) => { -<<<<<<< HEAD - const {collector, onRemoveLabels} = this.props -======= const {collector, onRemoveLabel} = this.props ->>>>>>> feat(ui): completed feature await onRemoveLabel(collector.id, label) }