sort by world id

This commit is contained in:
41666 2023-06-09 16:48:24 -04:00
parent ca9be2d846
commit 8b5ceaf599

View file

@ -13,7 +13,7 @@ export const loader = async () => {
fetchPopulationWorlds(),
]);
return json({ metagame, population });
return json({ metagame: metagame.sort((a, b) => a.id - b.id), population });
};
export const meta: V2_MetaFunction = () => {