mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
🐛 Fix incorrect typing in Area
This commit is contained in:
parent
c70549e545
commit
bfbcaafeab
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ export function Area({onChange, ...props}: AreaProps): JSX.Element {
|
|||
|
||||
const onChangeWrapper = React.useCallback(
|
||||
|
||||
(event: React.ChangeEvent<HTMLInputElement>): boolean => {
|
||||
(event: React.ChangeEvent<HTMLTextAreaElement>): boolean => {
|
||||
const contents = event.target.value
|
||||
|
||||
if(onChange) {
|
||||
|
|
Loading…
Reference in a new issue