From b010c9ecb0b312ca5fb77c0c3ac1ee06bd510241 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Tue, 12 Oct 2021 13:50:25 -0700 Subject: [PATCH] IO-1458 Production Board Sort ORder --- client/src/utils/sorters.js | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/utils/sorters.js b/client/src/utils/sorters.js index ae9089173..bb111bb81 100644 --- a/client/src/utils/sorters.js +++ b/client/src/utils/sorters.js @@ -16,5 +16,4 @@ export function statusSort(a, b, statusList) { return ( statusList.findIndex((x) => x === a) > statusList.findIndex((x) => x === b) ); - //return (a ? a.toLowerCase() : "").localeCompare(b ? b.toLowerCase() : ""); }