diff --git a/app/instruments/page.tsx b/app/instruments/page.tsx index cde7810..f3ececf 100644 --- a/app/instruments/page.tsx +++ b/app/instruments/page.tsx @@ -31,32 +31,30 @@ export default function Home() {
-
+
-

- Instrument Dashboards -

- -
- {[...instruments].map(([group, insts]) => { +
+ {[...instruments].sort().map(([group, insts]) => { return (
-

+

{group}

-
- {insts.map((instrument: string) => { +
+ {insts.sort().map((instrument: string) => { return ( -

- {instrument} -

+
+

+ {instrument} +

+
); })}