remove = (event) => {
const path = event.composedPath();
this.mestoApi.deleteCard(this.cardData._id)
.then(() => {
console.log(path);
this.placeCardLikeIcon.removeEventListener('click', this.like);
this.placeCardDeleteIcon.removeEventListener('click', this.remove);
this.placeCard.remove();
})
.catch(err => console.log(`Ошибка: ${err}`))
};