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() : ""); }