feat: remove newline

This commit is contained in:
Barrett Ruth 2025-05-14 12:52:42 -04:00
parent ea4638a89e
commit bec2c0d2a8

View file

@ -61,7 +61,7 @@ function renderRepoDescription(repoLink) {
const cloneUrl = document.createElement("div");
cloneUrl.style.marginTop = "15px";
cloneUrl.innerHTML = `<code>git clone \nhttps://git.barrettruth.com/git/${repoName}.git</code>`;
cloneUrl.innerHTML = `<code>git clone https://git.barrettruth.com/git/${repoName}.git</code>`;
post.appendChild(cloneUrl);
const viewNote = document.createElement("div");