Fix typing

pull/10616/head
Andrew Watkins 2018-06-07 13:36:07 -07:00
parent 1ace9495ff
commit 61c67c98f3
1 changed files with 2 additions and 2 deletions

View File

@ -34,6 +34,8 @@ interface State {
}
export default class TagListItem extends PureComponent<Props, State> {
private debouncedOnSearch: () => void
constructor(props) {
super(props)
@ -133,8 +135,6 @@ export default class TagListItem extends PureComponent<Props, State> {
)
}
private debouncedOnSearch() {} // See constructor
private handleInputClick = (e: MouseEvent<HTMLDivElement>): void => {
e.stopPropagation()
}