fix TS error
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-20 23:59:16 +03:30
parent 6b2d241eb2
commit e28a0d611e
2 changed files with 15 additions and 5 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { useEffect, useRef, useState, type FC, type MouseEvent } from 'react'
import { useEffect, useRef, useState, type FC, type MouseEvent as ReactMouseEvent } from 'react'
import { ArrowDown2, CloseCircle, TickSquare } from 'iconsax-react'
import { clx } from '../helpers/utils'
import type { ItemsSelectType } from './Select'
@@ -55,7 +55,7 @@ const MultiSelect: FC<Props> = ({
}
}
const handleClear = (e: MouseEvent) => {
const handleClear = (e: ReactMouseEvent) => {
e.stopPropagation()
onChange([])
onBlur?.()