Removes the redundant "Connect GitHub" placeholder from the chat composer import menu.
Problem
GitHub connection is already available through the Connectors tab. The disabled "Connect GitHub" item in the chat composer import menu was a redundant placeholder that created confusion about duplicate entry points.
Solution
Removed the <ImportItem icon="link" label={t("chat.importGitHub")} t={t} /> line from ChatComposer.tsx (line 1069).
This streamlines the UI and directs users to the primary GitHub connection flow via Connectors.
Summary
Removes the redundant "Connect GitHub" placeholder from the chat composer import menu.
Problem
GitHub connection is already available through the Connectors tab. The disabled "Connect GitHub" item in the chat composer import menu was a redundant placeholder that created confusion about duplicate entry points.
Solution
Removed the
<ImportItem icon="link" label={t("chat.importGitHub")} t={t} />line fromChatComposer.tsx(line 1069).This streamlines the UI and directs users to the primary GitHub connection flow via Connectors.
Changes
apps/web/src/components/ChatComposer.tsxTesting
Related
Fixes #777