Skip to content

Commit 0d482fc

Browse files
Uses constant for help center link
1 parent 0d23808 commit 0d482fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/webviews/apps/shared/components/mcp-banner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { css, html, LitElement, nothing } from 'lit';
22
import { customElement, property, state } from 'lit/decorators.js';
3+
import { urls } from '../../../../constants';
34
import { createCommandLink } from '../../../../system/commands';
45
import './banner/banner';
56

@@ -47,8 +48,7 @@ export class GlMcpBanner extends LitElement {
4748
return nothing;
4849
}
4950

50-
const bodyHtml =
51-
'Leverage Git and Integration information from GitLens in AI chat. <a href="https://help.gitkraken.com/mcp/mcp-getting-started">Learn more</a>';
51+
const bodyHtml = `Leverage Git and Integration information from GitLens in AI chat. <a href="${urls.helpCenterMCP}">Learn more</a>`;
5252

5353
return html`
5454
<gl-banner

0 commit comments

Comments
 (0)