From a2345dddc375dfeeb6a8f9503a32b2dae49e618e Mon Sep 17 00:00:00 2001 From: casperiv0 <53900565+casperiv0@users.noreply.github.com> Date: Sat, 30 Sep 2023 19:56:19 +0200 Subject: [PATCH] chore: use different icon --- .../map/smart-motorway-signs/smart-motorway-sign-marker.tsx | 2 +- apps/client/src/lib/map/blips.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/components/dispatch/map/smart-motorway-signs/smart-motorway-sign-marker.tsx b/apps/client/src/components/dispatch/map/smart-motorway-signs/smart-motorway-sign-marker.tsx index a23d6eaf3..b76277c08 100644 --- a/apps/client/src/components/dispatch/map/smart-motorway-signs/smart-motorway-sign-marker.tsx +++ b/apps/client/src/components/dispatch/map/smart-motorway-signs/smart-motorway-sign-marker.tsx @@ -36,7 +36,7 @@ export function SmartMotorwaySignsMarker({ marker }: Props) { ); const markerIcon = React.useMemo(() => { // eslint-disable-next-line prefer-destructuring - const icon = markerTypes[780]; + const icon = markerTypes[781]; if (icon) { return leafletIcon(icon); diff --git a/apps/client/src/lib/map/blips.ts b/apps/client/src/lib/map/blips.ts index fe4654704..aa49392c9 100644 --- a/apps/client/src/lib/map/blips.ts +++ b/apps/client/src/lib/map/blips.ts @@ -182,4 +182,5 @@ export const blipTypes: Record = { LSCarMeet: { id: 777, x: 4, y: 29 }, LSCarMeetGarage: { id: 779, x: 2, y: 29 }, Computer: { id: 780, x: 11, y: 113.75 }, + Computer2: { id: 781, x: 4, y: 109.75 }, };