diff --git a/quote_generator/js/quote.js b/quote_generator/js/quote.js index fdc8c73..94bcd38 100644 --- a/quote_generator/js/quote.js +++ b/quote_generator/js/quote.js @@ -4,7 +4,7 @@ const buttonElement = document.querySelector("button"); let quotes = []; -fetch("../json/quotes.json") +fetch("./json/quotes.json") .then(response => response.json()) .then(data => { quotes = data.quotes;