diff --git a/src/partials/projects.html b/src/partials/projects.html
index 3f17415..cc81fa0 100644
--- a/src/partials/projects.html
+++ b/src/partials/projects.html
@@ -78,7 +78,7 @@
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
- var countup = document.getElementById("c0re-countup")
+ var countup = document.getElementById("c0re-countup");
if (countup != null) {
countup.innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";