Fix URL used for Ask to LLM (#3697)

This commit is contained in:
Claire Chabas
2025-10-03 14:24:24 +02:00
committed by GitHub
parent a629900324
commit 1a6216df4f
@@ -40,7 +40,7 @@ export async function PageHeader(props: {
// Show page actions if *any* of the actions are enabled
<PageActionsDropdown
siteTitle={context.site.title}
markdownPageURL={`${context.linker.toAbsoluteURL(context.linker.toPathInSpace(page.path))}.md`}
markdownPageURL={`${context.linker.toAbsoluteURL(context.linker.toPathInSpace(page.path))}`}
editOnGit={
context.customization.git.showEditLink &&
context.space.gitSync?.url &&