Skip to content

Commit 6028786

Browse files
committed
Fix the fix
1 parent 6ce6b6a commit 6028786

File tree

1 file changed

+2
-2
lines changed
  • macromania_temporary_monorepo/macromania_defref

1 file changed

+2
-2
lines changed

macromania_temporary_monorepo/macromania_defref/mod.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,11 +1073,11 @@ function addDataAttributes(
10731073
if (includeAnchor) {
10741074
const previewPath = getPreviewPath(ctx);
10751075

1076-
let finalComponent = `${name}.html?def#${
1076+
let finalComponent = `${name}.html?def=${
10771077
replacementId === undefined ? name : replacementId
10781078
}`;
10791079
for (const [key, value] of queryParams) {
1080-
finalComponent = `${finalComponent}&${key}#${value}`;
1080+
finalComponent = `${finalComponent}&${key}=${value}`;
10811081
}
10821082

10831083
previewPath.push(finalComponent);

0 commit comments

Comments
 (0)