Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(text): change event type to ChangeEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Nov 2, 2019
1 parent aea29a0 commit c079fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TextField/TextField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ interface Props {
value?: string | ''

/** Handles the onChange event for the TextField */
onChange?: (event: React.KeyboardEvent<HTMLTextAreaElement>) => void
onChange?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void
}

/**
Expand Down

0 comments on commit c079fd3

Please sign in to comment.