Skip to content

Commit afc76f9

Browse files
authored
🐛 fix: when use market group, the group sys role was not used (#11739)
fix: when use market group, the group sys role was not used
1 parent 835da7b commit afc76f9

File tree

1 file changed

+1
-1
lines changed
  • src/app/[variants]/(main)/community/(detail)/group_agent/features/Sidebar/ActionButton

1 file changed

+1
-1
lines changed

src/app/[variants]/(main)/community/(detail)/group_agent/features/Sidebar/ActionButton/ForkGroupAndChat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const ForkGroupAndChat = memo<{ mobile?: boolean }>(() => {
130130
forkedFromIdentifier: identifier, // Store the source group identifier
131131
},
132132
// Group content is the supervisor's systemRole (for backward compatibility)
133-
content: supervisorConfig?.systemRole || config.systemRole,
133+
content: config.systemRole || supervisorConfig?.systemRole,
134134
...meta,
135135
};
136136

0 commit comments

Comments
 (0)