Skip to content

Commit 1f72224

Browse files
committed
remove extraneous logging
1 parent eeb4272 commit 1f72224

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-nlp-annotate",
3-
"version": "0.3.11",
3+
"version": "0.3.12",
44
"homepage": "https://universaldatatool.github.io/react-nlp-annotate/",
55
"main": "./dist/lib.js",
66
"dependencies": {

src/components/DocumentLabeler/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ export default function DocumentLabeler(props: LabelDocumentProps) {
2222
hotkeysEnabled={props.hotkeysEnabled}
2323
labels={props.labels}
2424
onSelectLabel={(labelId: string) => {
25-
console.log({ labelId })
2625
if (props.multipleLabels) {
2726
changeSelectedLabels(selectedLabels.concat([labelId]))
2827
props.onChange(selectedLabels.concat([labelId]))

src/components/RelationshipAnnotator/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ export default function RelationshipAnnotator(
4949
: stringToSequence(props.document).map(withId)
5050
})
5151

52-
console.log(sequence, relationships)
53-
5452
const labels = creatingRelationships
5553
? props.relationshipLabels
5654
: props.entityLabels

0 commit comments

Comments
 (0)