From 8171ba461e1b7b19a0a398365be73bc8943aa2c9 Mon Sep 17 00:00:00 2001 From: Camille Frantz Date: Sun, 9 Apr 2023 15:02:33 -0500 Subject: [PATCH] changed the fetch to source from the DO Spaces cdn instead of a local copy --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 0e912ef..8d71b1a 100644 --- a/app.js +++ b/app.js @@ -1,6 +1,6 @@ const disp = document.querySelector(".display"); -fetch("FavouriteQuotes.json") +fetch("https://cdn.fyrfli.link/FavouriteQuotes.json") .then((response) => { return response.json(); })