mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
fixing build error
This commit is contained in:
parent
4e6728bf84
commit
ace1e5ff7c
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ export default function SurveyIssuesPanel({
|
|||
if (!groups.has(key)) groups.set(key, []);
|
||||
groups.get(key)!.push(deal);
|
||||
}
|
||||
const sortedGroups = [...groups.entries()].sort(
|
||||
const sortedGroups = Array.from(groups.entries()).sort(
|
||||
(a, b) => b[1].length - a[1].length,
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue