Skip to content

Commit f7175f2

Browse files
authored
Update index.html
1 parent b0f88f7 commit f7175f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/index.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ <h1 class="my-4">Repository Links</h1>
7777
// Redirect to the first Hugging Face URL
7878
const firstHuggingFaceRepo = repos.find(repo => repo.url.includes("huggingface"));
7979
if (firstHuggingFaceRepo) {
80-
window.location.href = firstHuggingFaceRepo.url;
80+
const url = firstHuggingFaceRepo.url;
81+
const text = document.createElement("p");
82+
text.innerHTML = url
8183
}
8284
});
8385
</script>

0 commit comments

Comments
 (0)