fix(mcp): correct event handler type for onInput

This commit is contained in:
waleed
2026-01-28 00:59:23 -08:00
parent c4d0fc31cc
commit 0603101d75

View File

@@ -176,7 +176,7 @@ function FormattedInput({
onChange,
onScroll,
}: FormattedInputProps) {
const handleScroll = (e: React.UIEvent<HTMLInputElement>) => {
const handleScroll = (e: { currentTarget: HTMLInputElement }) => {
onScroll(e.currentTarget.scrollLeft)
}