fix: Improve CreateChatModal with proper agent ordering and simpler UI#690
Merged
rabanspiegel merged 5 commits intomainfrom Jan 27, 2026
Merged
fix: Improve CreateChatModal with proper agent ordering and simpler UI#690rabanspiegel merged 5 commits intomainfrom
rabanspiegel merged 5 commits intomainfrom
Conversation
- Add AgentDropdown component for simple single-agent selection - Use agentConfig order for consistent agent listing (Claude first) - Respect user's default agent setting when pre-selecting - Change label from 'Select AI Agent' to 'Agent' for consistency - Change button from 'Create Chat' to 'Create' for consistency - Remove unused props (installedProviders, currentProvider) - Fix MultiAgentDropdown to preserve agentConfig order
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Add cancel guard and cleanup function to the useEffect that loads settings via getSettings(). This prevents race conditions when the modal closes/reopens quickly or usedAgents changes while the promise is pending. Follows the same pattern used in TaskModal.tsx.
- Clear error state when async settings load selects valid agent - Remove dead installedAgents state and useEffect from ChatInterface - Remove unused defaultAgent prop from MultiAgentDropdown
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
Pass installedAgents from ChatInterface to CreateChatModal and AgentDropdown to filter agent selection to only installed agents.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
AgentDropdowncomponent for simple single-agent selection (no multi-run selector, no tooltips)agentConfigorder for consistent agent listing (Claude Code first)MultiAgentDropdownto preserveagentConfigorder instead of custom sortingNote
Introduces a simpler single-agent selection flow and standardizes agent ordering across the UI.
AgentDropdownlists only installed agents inagentConfigorder and disables agents already in useCreateChatModalto single-agent selection (loads default from settings, validates availability, updated label/button text)ChatInterfacenow derivesinstalledAgentsfromagentStatusesviauseMemoand passes toCreateChatModal(removes local state/effect)MultiAgentDropdownpreservesagentConfigorder and dropsdefaultAgentsorting behavior/propTaskModalsimplifies agent selection by removingdefaultAgentFromSettingsand usingMultiAgentDropdownas-isWritten by Cursor Bugbot for commit 8c6a3a0. This will update automatically on new commits. Configure here.