From 7153a48fa44420e013d2ad1f6744964a03164852 Mon Sep 17 00:00:00 2001 From: Ash Monty Date: Tue, 14 Dec 2021 21:17:55 +0100 Subject: [PATCH] fix special thanks rows not being tripled correctly --- src/routers/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routers/home.js b/src/routers/home.js index b244b52..6ed5484 100644 --- a/src/routers/home.js +++ b/src/routers/home.js @@ -31,7 +31,7 @@ router.get('/', async (request, response) => { // Builds the final array to be sent to the view, and triples each row. specialThanksPeople = { first: specialThanksFirstRow.concat(specialThanksFirstRow).concat(specialThanksFirstRow), - second: specialThanksSecondRow.concat(specialThanksSecondRow).concat(specialThanksFirstRow) + second: specialThanksSecondRow.concat(specialThanksSecondRow).concat(specialThanksSecondRow) }; response.render('home', {