fix: conditional access

This commit is contained in:
Cory Dransfeldt 2024-04-28 17:14:51 -07:00
parent 2614dff452
commit acfeb6135f

View file

@ -53,12 +53,12 @@ export const onPreBuild = async ({ constants }) => {
for (const key of monthKeys) { for (const key of monthKeys) {
const scrobbleData = await scrobbles.get(key, { type: 'json'}) const scrobbleData = await scrobbles.get(key, { type: 'json'})
monthChartData['data'].push(...scrobbleData['data']) monthChartData?.['data'].push(...scrobbleData?.['data'])
} }
for (const key of threeMonthKeys) { for (const key of threeMonthKeys) {
const scrobbleData = await scrobbles.get(key, { type: 'json'}) const scrobbleData = await scrobbles.get(key, { type: 'json'})
threeMonthChartData['data'].push(...scrobbleData['data']) threeMonthChartData?.['data'].push(...scrobbleData?.['data'])
} }
for (const key of yearKeys) { for (const key of yearKeys) {