diff --git a/ui/src/ifql/components/BodyBuilder.tsx b/ui/src/ifql/components/BodyBuilder.tsx index c4439d882..91d6977b3 100644 --- a/ui/src/ifql/components/BodyBuilder.tsx +++ b/ui/src/ifql/components/BodyBuilder.tsx @@ -78,7 +78,10 @@ class BodyBuilder extends PureComponent { } private createNewDeclaration = (bodyID, name, declarationID) => { - console.log(bodyID, name, declarationID) + // Returning a string here so linter stops yelling + // TODO: write a real function + + return `${bodyID} / ${name} / ${declarationID}` } private get funcNames() {