fixing build error

This commit is contained in:
Khalim Conn-Kowlessar 2026-04-04 19:22:59 +00:00
parent 4e6728bf84
commit ace1e5ff7c

View file

@ -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,
);