refactor: type improvements that doesn't modify functionality (#17970)

This commit is contained in:
yusheng chen
2025-04-14 16:06:10 +08:00
committed by GitHub
parent 53efb2bad5
commit 4c99e9dc73
39 changed files with 69 additions and 63 deletions

View File

@@ -1,3 +1,4 @@
import type { ChangeEventHandler } from 'react'
import {
useCallback,
useRef,
@@ -49,7 +50,7 @@ const SearchInput = ({
})
}, [querySchoolsWithDebounced, handleUpdateSchools])
const handleValueChange = useCallback((e: any) => {
const handleValueChange: ChangeEventHandler<HTMLInputElement> = useCallback((e) => {
setOpen(true)
setSchools([])
pageRef.current = 0