This commit is contained in:
KoalaSat 2023-10-15 23:50:44 +02:00 committed by Reckless_Satoshi
parent 004d98e0d9
commit 508a63a60d

View File

@ -97,7 +97,7 @@ const Map = ({
const getOrderMarkers = () => {
return orders.map((order) => {
if (!order.latitude || !order.longitude) return <></>;
return RobotMarker('marker', [order.latitude, order.longitude], orderType || 0, order);
return RobotMarker(order.id, [order.latitude, order.longitude], order.type || 0, order);
});
};