From 7d1ee3d2447d4b3d8c6991b7f184917da90ac20b Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 23 Oct 2024 11:56:11 -0500 Subject: [PATCH] reoreder quotes on device management page --- website/api/controllers/view-device-management.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/api/controllers/view-device-management.js b/website/api/controllers/view-device-management.js index 44b86bd21027..2960b440a2aa 100644 --- a/website/api/controllers/view-device-management.js +++ b/website/api/controllers/view-device-management.js @@ -29,7 +29,7 @@ module.exports = { }); // Specify an order for the testimonials on this page using the last names of quote authors - let testimonialOrderForThisPage = ['Erik Gomez', 'Kenny Botelho', 'Wes Whetstone', 'Matt Carr', 'Dan Grzelak', 'Nick Fohs']; + let testimonialOrderForThisPage = ['Scott MacVicar', 'Erik Gomez', 'Kenny Botelho', 'Wes Whetstone', 'Matt Carr', 'Dan Grzelak', 'Nick Fohs']; testimonialsForScrollableTweets.sort((a, b)=>{ if(testimonialOrderForThisPage.indexOf(a.quoteAuthorName) === -1){ return 1;