changed the fetch to source from the DO Spaces cdn instead of a local copy

This commit is contained in:
Camille Frantz 2023-04-09 15:02:33 -05:00
parent ff9ff41aa2
commit 8171ba461e
Signed by: fyrfli
SSH Key Fingerprint: SHA256:cyNGncrLxKXAgYC96dYNROnQKikLInzrpiMraZdqyhY
1 changed files with 1 additions and 1 deletions

2
app.js
View File

@ -1,6 +1,6 @@
const disp = document.querySelector(".display");
fetch("FavouriteQuotes.json")
fetch("https://cdn.fyrfli.link/FavouriteQuotes.json")
.then((response) => {
return response.json();
})