Make linter chill out

pull/3421/head
Alex P 2018-05-08 14:22:35 -07:00 committed by Andrew Watkins
parent f0908080d8
commit 557fcd25e1
1 changed files with 4 additions and 1 deletions

View File

@ -78,7 +78,10 @@ class BodyBuilder extends PureComponent<Props> {
}
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() {