diff --git a/src/components/InteractiveMap.tsx b/src/components/InteractiveMap.tsx index 74a2af7..6245d2f 100644 --- a/src/components/InteractiveMap.tsx +++ b/src/components/InteractiveMap.tsx @@ -28,7 +28,7 @@ const getCoordinatesFromCardData = (cardProps: CardProps) => { const getAnnotationFromCardData = (props: CardProps) => { const annotationProperty = props.find((item) => item.propertyId === ANNOTATION_PROPERTY_ID); if (annotationProperty) { - return JSON.parse(annotationProperty.data); + return annotationProperty.data; } return "-";