Update apps.js

This commit is contained in:
Cobalt-60
2023-08-22 16:07:23 -04:00
committed by GitHub
parent 85234b83c0
commit 0be3cf9280
+1 -1
View File
@@ -12,7 +12,7 @@ let games = []; // store all games
let filteredGames = []; // store filtered games
const load = () => {
fetch('/assets/JSON/apps.json')
fetch('/assets/JSON/games.json')
.then(res => res.json())
.then(data => {
games = data;