From 825762a469f89d8067ff987336db4caf05a775d3 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 3 Apr 2024 20:35:46 -0700 Subject: [PATCH] chore: debug --- src/_data/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/test.js b/src/_data/test.js index 5551837c..facf7e73 100644 --- a/src/_data/test.js +++ b/src/_data/test.js @@ -6,5 +6,5 @@ export default async function () { const artists = JSON.parse(await readFile('./src/_data/json/artists-map.json', 'utf8')); const albums = JSON.parse(await readFile('./src/_data/json/albums-map.json', 'utf8')); const nowPlaying = JSON.parse(await readFile('./src/_data/json/now-playing.json', 'utf8')); - return buildChart(window, artists, albums, nowPlaying) + return buildChart(window['data'], artists, albums, nowPlaying) }