Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
David Speers committed Jan 14, 2021
1 parent 2b9181a commit 74cb398
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lambdas/googleTrends.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ async function getTrendsScores(queries, dates) {
let trendsScores = {
user: {
answer: queries[0],
weeklyScore: timelineData.map((entry) => entry.value[0]),
weeklyScores: timelineData.map((entry) => entry.value[0]),
},
cpu: {
answer: queries[1],
weeklyScore: timelineData.map((entry) => entry.value[1]),
weeklyScores: timelineData.map((entry) => entry.value[1]),
},
};

Expand Down

0 comments on commit 74cb398

Please sign in to comment.