fix build
This commit is contained in:
@@ -8,7 +8,7 @@ type Props = {
|
|||||||
|
|
||||||
const CheckBoxComponent: FC<Props> = (props: Props) => {
|
const CheckBoxComponent: FC<Props> = (props: Props) => {
|
||||||
return (
|
return (
|
||||||
<Checkbox checked={props.checked} onChange={props.onChange} onPointerEnterCapture={undefined} onPointerLeaveCapture={undefined} crossOrigin={undefined} />
|
<Checkbox checked={props.checked} onChange={props.onChange} onPointerEnterCapture={undefined} onPointerLeaveCapture={undefined} crossOrigin={undefined} onResize={undefined} onResizeCapture={undefined} />
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,15 @@ const OtherServices: FC = () => {
|
|||||||
return (
|
return (
|
||||||
<div className='w-full flex gap-6'>
|
<div className='w-full flex gap-6'>
|
||||||
<div className='flex-1'>
|
<div className='flex-1'>
|
||||||
<Carousel autoplay className="rounded-xl h-fit dltr" placeholder="" onPointerEnterCapture={() => { }} onPointerLeaveCapture={() => { }} >
|
<Carousel
|
||||||
|
autoplay
|
||||||
|
className="rounded-xl h-fit dltr"
|
||||||
|
placeholder=""
|
||||||
|
onPointerEnterCapture={() => { }}
|
||||||
|
onPointerLeaveCapture={() => { }}
|
||||||
|
onResize={() => { }}
|
||||||
|
onResizeCapture={() => { }}
|
||||||
|
>
|
||||||
<div className='relative drtl'>
|
<div className='relative drtl'>
|
||||||
<img src={BannerImage} className='w-full max-h-[300px] h-full object-cover rounded-3xl' />
|
<img src={BannerImage} className='w-full max-h-[300px] h-full object-cover rounded-3xl' />
|
||||||
<div className='absolute bg-black bg-opacity-20 size-full top-0 right-0 py-6 px-8 flex flex-col justify-between'>
|
<div className='absolute bg-black bg-opacity-20 size-full top-0 right-0 py-6 px-8 flex flex-col justify-between'>
|
||||||
|
|||||||
Reference in New Issue
Block a user