From b355b76c6a63b0a3281dcf973ea17fe583b84964 Mon Sep 17 00:00:00 2001 From: levig Date: Sun, 5 Jul 2026 01:01:46 -0300 Subject: [PATCH 1/2] feat(map): show team size in the project popup Add the team_size field to ProjectResponse (US-9.1) and display it in the map popup's details grid with a people icon and a "N members" label, so users can gauge a project's scale at a glance. --- src/components/pages/MapPage.tsx | 14 ++++++++++++++ src/types/project.ts | 1 + 2 files changed, 15 insertions(+) diff --git a/src/components/pages/MapPage.tsx b/src/components/pages/MapPage.tsx index b0e8dac..d0435a7 100644 --- a/src/components/pages/MapPage.tsx +++ b/src/components/pages/MapPage.tsx @@ -184,6 +184,20 @@ function ProjectPopupContent({ )} +
+
+ + + + + + + Team +
+
+ {project.team_size} {project.team_size === 1 ? "member" : "members"} +
+
Coordinates diff --git a/src/types/project.ts b/src/types/project.ts index c10a82d..fd3f380 100644 --- a/src/types/project.ts +++ b/src/types/project.ts @@ -6,6 +6,7 @@ export interface ProjectResponse { latitude: number | null longitude: number | null location_display_name: string | null + team_size: number created_at: string updated_at: string } From 3e6e757ff97a7d51b2ead4cece4c8c950d74bb8c Mon Sep 17 00:00:00 2001 From: Levi Gomes Date: Wed, 15 Jul 2026 17:02:03 -0300 Subject: [PATCH 2/2] chore(ci): empty commit to re-trigger CI checks Co-Authored-By: Claude Opus 4.8 (1M context)