Использую пакет react-yandex-maps и при клике на Placemark с помощью instanceRef вызываю setPVZ, все бы хорошо, но при клике функция вызывается дважды. Отчего это происходит и как это исправить?
<Placemark
key={point.Code}
modules={['geoObject.addon.balloon', 'geoObject.addon.hint', 'templateLayoutFactory', 'layout.ImageWithContent']}
geometry={[point.coordY, point.coordX]}
properties={{
iconContent: i + 1,
hintContent: '<div class="placeMark"><h2><i class="fal fa-shipping-fast"></i> Пункт самовывоза:</h2><div><i class="fal fa-map-marker-check"></i> ' + point.City + ', ' + point.Address + '</div><div><i class="fal fa-clock"></i> ' + point.WorkTime + '</div><div><i class="fal fa-mobile"></i> ' + point.Phone + '</div></div>',
}}
options={{
iconLayout: 'default#imageWithContent',
iconImageHref: pointSVG,
iconImageSize: [36, 36],
iconContentSize: [32, 32],
iconContentOffset: [2, 5],
iconImageOffset: [-18, -18],
}}
instanceRef={
placeMark => setPVZ(placeMark, {
city: point.City,
address: point.Address,
telephone: point.Phone,
time: point.WorkTime,
code: point.Code
})
}
/>
let setPVZ = (placeMark, data) => {
placeMark.events.add('click', function () {
console.log(data);
// setSaveAPIPVZAddress(data);
});
};