diff --git a/apps/explorer/src/app/[network]/page.tsx b/apps/explorer/src/app/[network]/page.tsx index 7bf4008..f1ca09b 100644 --- a/apps/explorer/src/app/[network]/page.tsx +++ b/apps/explorer/src/app/[network]/page.tsx @@ -25,8 +25,10 @@ export default function Network() { validatedProofs: true }) - setAllGroups(groups) - setFilteredGroups(groups.slice()) + const sortedGroups = groups.sort((a, b) => parseInt(a.id, 10) - parseInt(b.id, 10)) + + setAllGroups(sortedGroups) + setFilteredGroups(sortedGroups.slice()) setLoading(false) }