Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Sep 5, 2019
1 parent 96a7681 commit 8e3b021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Selector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const Selector: React.RefForwardingComponent<RefSelectorProps, SelectorProps> =
* We can not use `findDOMNode` sine it will get warning,
* have to use timer to check if is input element.
*/
const onInternalInputMouseDown: React.MouseEventHandler<HTMLInputElement> = event => {
const onInternalInputMouseDown: React.MouseEventHandler<HTMLInputElement> = () => {
setInputMouseDown(true);
};

Expand Down

0 comments on commit 8e3b021

Please sign in to comment.