-
Notifications
You must be signed in to change notification settings - Fork 1.5k
ux - adopt our branding for error welcome views #2581
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR updates the branding for error welcome views in the chat interface by replacing the icon and title across all error states. The changes align these error views with the new "Agent" branding by using the chat-sparkle icon instead of copilot-large and the title "Build with Agent" instead of "Ask Copilot".
Key Changes:
- Updated icon from
$(copilot-large)to$(chat-sparkle)across all 6 error welcome views - Changed title from "Ask Copilot" to "Build with Agent" for all error states
| "title": "%copilot.title%", | ||
| "content": "%github.copilot.viewsWelcome.individual.expired%", | ||
| "when": "github.copilot.interactiveSession.individual.expired" | ||
| }, | ||
| { | ||
| "icon": "$(copilot-large)", | ||
| "title": "Ask Copilot", | ||
| "icon": "$(chat-sparkle)", | ||
| "title": "%copilot.title%", | ||
| "content": "%github.copilot.viewsWelcome.enterprise%", | ||
| "when": "github.copilot.interactiveSession.enterprise.disabled" | ||
| }, | ||
| { | ||
| "icon": "$(copilot-large)", | ||
| "title": "Ask Copilot", | ||
| "icon": "$(chat-sparkle)", | ||
| "title": "%copilot.title%", | ||
| "content": "%github.copilot.viewsWelcome.offline%", | ||
| "when": "github.copilot.offline" | ||
| }, | ||
| { | ||
| "icon": "$(copilot-large)", | ||
| "title": "Ask Copilot", | ||
| "icon": "$(chat-sparkle)", | ||
| "title": "%copilot.title%", | ||
| "content": "%github.copilot.viewsWelcome.contactSupport%", | ||
| "when": "github.copilot.interactiveSession.contactSupport" | ||
| }, | ||
| { | ||
| "icon": "$(copilot-large)", | ||
| "title": "Ask Copilot", | ||
| "icon": "$(chat-sparkle)", | ||
| "title": "%copilot.title%", | ||
| "content": "%github.copilot.viewsWelcome.chatDisabled%", | ||
| "when": "github.copilot.interactiveSession.chatDisabled" | ||
| }, | ||
| { | ||
| "icon": "$(copilot-large)", | ||
| "title": "Ask Copilot", | ||
| "icon": "$(chat-sparkle)", | ||
| "title": "%copilot.title%", |
Copilot
AI
Dec 15, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The title "Build with Agent" is misleading for error welcome views. These views appear when users cannot use Copilot (expired subscription, offline, disabled, etc.). The title suggests an action users can take, but they're actually blocked from using the feature. Consider a more appropriate title that reflects these are error/blocked states, such as "GitHub Copilot" or "Copilot Unavailable".
See below for a potential fix:
"title": "GitHub Copilot",
"content": "%github.copilot.viewsWelcome.individual.expired%",
"when": "github.copilot.interactiveSession.individual.expired"
},
{
"icon": "$(chat-sparkle)",
"title": "GitHub Copilot",
"content": "%github.copilot.viewsWelcome.enterprise%",
"when": "github.copilot.interactiveSession.enterprise.disabled"
},
{
"icon": "$(chat-sparkle)",
"title": "GitHub Copilot",
"content": "%github.copilot.viewsWelcome.offline%",
"when": "github.copilot.offline"
},
{
"icon": "$(chat-sparkle)",
"title": "GitHub Copilot",
"content": "%github.copilot.viewsWelcome.contactSupport%",
"when": "github.copilot.interactiveSession.contactSupport"
},
{
"icon": "$(chat-sparkle)",
"title": "GitHub Copilot",
"content": "%github.copilot.viewsWelcome.chatDisabled%",
"when": "github.copilot.interactiveSession.chatDisabled"
},
{
"icon": "$(chat-sparkle)",
"title": "GitHub Copilot",
No description provided.