We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0f88f7 commit f7175f2Copy full SHA for f7175f2
docs/index.html
@@ -77,7 +77,9 @@ <h1 class="my-4">Repository Links</h1>
77
// Redirect to the first Hugging Face URL
78
const firstHuggingFaceRepo = repos.find(repo => repo.url.includes("huggingface"));
79
if (firstHuggingFaceRepo) {
80
- window.location.href = firstHuggingFaceRepo.url;
+ const url = firstHuggingFaceRepo.url;
81
+ const text = document.createElement("p");
82
+ text.innerHTML = url
83
}
84
});
85
</script>
0 commit comments