Skip to content

Commit

Permalink
Fix the search url
Browse files Browse the repository at this point in the history
  • Loading branch information
TomMalbran committed Sep 24, 2023
1 parent 6458f36 commit 8c089d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Search.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default class Search {
async fetchData() {
if (this.#withTags) {
// Try to get the data from: http://fonts.google.com/metadata/icons?incomplete=1&key=material_symbols
const response = await fetch("../data/icons.json");
const response = await fetch("data/icons.json");
const result = await response.json();
this.#data = result;
} else {
Expand Down

0 comments on commit 8c089d6

Please sign in to comment.