From e5aa05739e16b208745f24b6b8e8d7f7d6248aa6 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 2 Dec 2025 08:05:26 -0600 Subject: [PATCH] Fix persona selection grid to use 2x2 layout for consistency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the Select Participants grid from 3 columns to 2 columns on large screens to match the visual pattern used elsewhere in the platform. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/components/FocusGroupModerator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/FocusGroupModerator.tsx b/src/components/FocusGroupModerator.tsx index 7c1ae93f..e4592389 100644 --- a/src/components/FocusGroupModerator.tsx +++ b/src/components/FocusGroupModerator.tsx @@ -2081,7 +2081,7 @@ Controls how much time GPT-5 spends thinking before responding ) : filteredPersonas.length > 0 ? ( -
+
{filteredPersonas.map((persona) => { // Ensure we have a valid ID (use MongoDB _id if available) const personaId = persona._id || persona.id;