Skip to content

Commit

Permalink
feat: fix input onchange to oninput
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack-Works committed Jul 24, 2019
1 parent daffc14 commit 20b40e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/hooks/useCapturedEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function useCapturedInput(
}
}
}
useEffect(binder(['change'], use), [ref.current])
useEffect(binder(['input'], use), [ref.current])
useEffect(
binder(
[
Expand Down

0 comments on commit 20b40e6

Please sign in to comment.