Skip to content

Commit

Permalink
fix: generateDeploymentHistory param usage
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Dec 7, 2023
1 parent 8252ec0 commit 00f02fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generateMarkdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function generateAndSaveMarkdown(input) {
)
.join("\n\t- ");
out += `\n- [Deployment History](#deployment-history)`;
const { deploymentHistoryMd, allVersions } = generateDeploymentHistory(input.history, input.latest, input.chainId);
const { deploymentHistoryMd, allVersions } = generateDeploymentHistory(input.history, input.chainId);
out += Object.keys(allVersions)
.map((v) => `\n\t- [${v}](#${v.replace(/\. /g, "").replace(/ /g, "-").toLowerCase()})`)
.join("");
Expand Down

0 comments on commit 00f02fd

Please sign in to comment.