Skip to content

Commit

Permalink
Update cv.html
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHodgins authored Apr 11, 2024
1 parent 1afe771 commit 74958eb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pages/cv.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ <h1>CV</h1>
.then(data => {
document.getElementById("navigation").innerHTML = data;
})
.catch(error => console.error('Error fetching navigation:', error));
.catch(error => {
// Gracefully handle errors
console.error('Error fetching navigation:', error);
});
</script>
</body>
</html>

0 comments on commit 74958eb

Please sign in to comment.