eslint bug fixed

This commit is contained in:
Samandar Turgunboyev
2025-12-01 09:20:18 +05:00
parent 9bc4c3df1f
commit 40036322cb
8 changed files with 40 additions and 31 deletions

View File

@@ -240,7 +240,7 @@ const AddedDoctor = ({ initialValues, setDialogOpen }: Props) => {
}
})();
}
}, [initialValues]);
}, [initialValues, form]);
const handleMapClick = (
e: ymaps.IEvent<MouseEvent, { coords: [number, number] }>,

View File

@@ -172,7 +172,7 @@ export default function AddedObject({ initialValues, setDialogOpen }: Props) {
}
})();
}
}, [initialValues]);
}, [initialValues, form]);
const handleMapClick = (
e: ymaps.IEvent<MouseEvent, { coords: [number, number] }>,

View File

@@ -203,7 +203,7 @@ const AddedPharmacies = ({ initialValues, setDialogOpen }: Props) => {
}
})();
}
}, [initialValues]);
}, [initialValues, form]);
const handleMapClick = (
e: ymaps.IEvent<MouseEvent, { coords: [number, number] }>,