mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-31 10:31:35 +00:00
Bug fix
This commit is contained in:
parent
004d98e0d9
commit
508a63a60d
@ -97,7 +97,7 @@ const Map = ({
|
|||||||
const getOrderMarkers = () => {
|
const getOrderMarkers = () => {
|
||||||
return orders.map((order) => {
|
return orders.map((order) => {
|
||||||
if (!order.latitude || !order.longitude) return <></>;
|
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);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user