fixed let -> const

This commit is contained in:
Wyatt Johnson
2018-01-04 10:56:15 -07:00
parent 843908dab2
commit c683dd8d32
+1 -1
View File
@@ -61,7 +61,7 @@ async function processBatch(Model, documents) {
// Group all the action summaries together from all the different group
// ids.
let groupedActionSummaries = actionSummaries.reduce((acc, actionSummary) => {
const groupedActionSummaries = actionSummaries.reduce((acc, actionSummary) => {
// action_type is already snake cased (as it would have had to be when it
// was inserted in the database).