try {
const response = await Promise.all(map(list, ({address}) => ymaps.geocode(`address`)))
const coordinates = map(response, (coordinate) => coordinate.geoObjects.get(0).geometry.getCoordinates());
allCoordinates.push(...coordinates);
} catch (error) {
this.props.onError();
}