Skip to content

Commit 354141b

Browse files
committed
Fix Astro 6 build errors: image imports and anchor link slugs
- _mcp-auth-claude-code.mdx: Import skill-activation.png and use imported variable for src (Astro 6 requires imported images) - add-modular-sso.mdx, quickstart.mdx, group-based-role-assignment.mdx: Update anchor links to account for Badge component context in heading IDs (#embed-the-admin-portal- and #generate-shareable-portal-link-)
1 parent e62bca2 commit 354141b

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/components/templates/coding-agents/_mcp-auth-claude-code.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Steps, Aside, Tabs, TabItem } from '@astrojs/starlight/components'
22
import { Image } from 'astro:assets'
33
import enableClaudePluginGif from '@/assets/docs/ai-assisted-mcp-quickstart/2.gif'
4+
import skillActivation from '@/assets/docs/ai-assisted-mcp-quickstart/skill-activation.png'
45

56
<Steps>
67

@@ -79,7 +80,7 @@ import enableClaudePluginGif from '@/assets/docs/ai-assisted-mcp-quickstart/2.gi
7980
When you submit this prompt, Claude Code loads the MCP authentication skill from the marketplace -> analyzes your existing MCP server structure -> generates authentication middleware with token validation -> creates the OAuth discovery endpoint -> configures environment variable handling.
8081

8182
<Image
82-
src="@/assets/docs/ai-assisted-mcp-quickstart/skill-activation.png"
83+
src={skillActivation}
8384
alt="Claude Code activating MCP authentication skill"
8485
/>
8586

src/content/docs/authenticate/sso/add-modular-sso.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ Choose Modular SSO when you:
824824

825825
Customers configure SSO without leaving your application, maintaining a consistent user experience. Listen for UI events from the embedded portal to respond to configuration changes, such as when SSO is enabled or the session expires. See the [Admin portal UI events reference](/reference/admin-portal/ui-events/) for details on handling these events.
826826

827-
Learn more: [Embedded Admin Portal guide](/guides/admin-portal/#embed-the-admin-portal)
827+
Learn more: [Embedded Admin Portal guide](/guides/admin-portal/#embed-the-admin-portal-)
828828

829829
</TabItem>
830830
</Tabs>

src/content/docs/directory/guides/group-based-role-assignment.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ After you create roles, they represent the roles in your app that you want direc
8484
You can set up this mapping in two ways:
8585

8686
1. Configure mappings in the Scalekit dashboard on behalf of organization administrators. Select the organization and go to the **SCIM provisioning** tab.
87-
2. Share the [admin portal link](/guides/admin-portal#generate-shareable-portal-link) with organization administrators so they can configure the mappings themselves.
87+
2. Share the [admin portal link](/guides/admin-portal/#generate-shareable-portal-link-) with organization administrators so they can configure the mappings themselves.
8888

8989
Scalekit automatically displays mapping options in both the Scalekit dashboard and the admin portal. This allows administrators to connect organization groups to app roles without custom logic in your application.
9090

src/content/docs/sso/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ Choose Modular SSO when you:
859859

860860
Customers configure SSO without leaving your application, maintaining a consistent user experience.
861861

862-
Learn more: [Embedded Admin Portal guide](/guides/admin-portal/#embed-the-admin-portal)
862+
Learn more: [Embedded Admin Portal guide](/guides/admin-portal/#embed-the-admin-portal-)
863863

864864
</TabItem>
865865
</Tabs>

0 commit comments

Comments
 (0)