fix: type error in list-operator (#22803)

This commit is contained in:
呆萌闷油瓶
2025-07-24 12:21:20 +08:00
committed by GitHub
parent c6d7328e15
commit 371fe7a700
5 changed files with 3 additions and 8 deletions

View File

@@ -18,7 +18,6 @@ const OptionListItem: FC<OptionListItemProps> = ({
useEffect(() => {
if (isSelected && !noAutoScroll)
listItemRef.current?.scrollIntoView({ behavior: 'instant' })
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
return (

View File

@@ -52,7 +52,6 @@ const TimePicker = ({
else {
setSelectedTime(prev => prev ? getDateWithTimezone({ date: prev, timezone }) : undefined)
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [timezone])
const handleClickTrigger = (e: React.MouseEvent) => {