diff --git a/CHANGELOG.md b/CHANGELOG.md
index b58dfe174b0d1..2e6779af4ab97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
+### Changed
+
+- Improves AI status label in integrations popup to "Select AI model to enable AI features" and fixes text brightness ([#4400](https://github.com/gitkraken/vscode-gitlens/issues/4400))
+
## [17.2.0] - 2025-06-17
### Added
diff --git a/src/webviews/apps/plus/shared/components/integrations-chip.ts b/src/webviews/apps/plus/shared/components/integrations-chip.ts
index 89c825168254e..d8f85f4184527 100644
--- a/src/webviews/apps/plus/shared/components/integrations-chip.ts
+++ b/src/webviews/apps/plus/shared/components/integrations-chip.ts
@@ -356,16 +356,18 @@ export class GlIntegrationsChip extends LitElement {
${this.aiEnabled
? html`
-
- ${model?.provider.name ?? 'AI'}
- ${showProBadge
- ? html` `
- : nothing}
-
+ ${model?.provider.name
+ ? html`
+ ${model.provider.name}
+ ${showProBadge
+ ? html` `
+ : nothing}
+ `
+ : html`Select AI model to enable AI features`}
${model?.name ? html`${model.name}` : nothing}