From d29e2f34e2bfc763dcbcf45d350e96949d9a403a Mon Sep 17 00:00:00 2001 From: Alexis Leboeuf Date: Thu, 11 Dec 2025 15:56:30 +0100 Subject: [PATCH] Added fields to Marker info display --- app/(tabs)/mapScreen.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app/(tabs)/mapScreen.tsx b/app/(tabs)/mapScreen.tsx index d49992b..9b4371b 100644 --- a/app/(tabs)/mapScreen.tsx +++ b/app/(tabs)/mapScreen.tsx @@ -42,12 +42,15 @@ const region = { style={styles.map} region={region} > - {chantiers.map(chantier => ( - - ))} + {Array.isArray(chantiers) && + chantiers.map(chantier => ( + + ))} );