diff --git a/src/pages/FocusGroups.tsx b/src/pages/FocusGroups.tsx
index 980271d5..5922b6b1 100644
--- a/src/pages/FocusGroups.tsx
+++ b/src/pages/FocusGroups.tsx
@@ -378,18 +378,28 @@ const FocusGroups = () => {
) : filteredGroups.length > 0 ? (
{filteredGroups.map((group) => (
-
{
+ if (group.status === 'draft') {
+ setDraftToEdit(group);
+ setMode('create');
+ }
+ }}
>
-
toggleGroupSelection(group.id || group._id || '')}
+ onClick={(e) => e.stopPropagation()}
className="mt-1"
/>
@@ -461,68 +471,80 @@ const FocusGroups = () => {
-
+ )}