diff --git a/website/src/repl/panel/SoundsTab.jsx b/website/src/repl/panel/SoundsTab.jsx index d4b52ee5..9b35d04b 100644 --- a/website/src/repl/panel/SoundsTab.jsx +++ b/website/src/repl/panel/SoundsTab.jsx @@ -13,7 +13,9 @@ export function SoundsTab() { const sounds = useStore(soundMap); const { soundsFilter } = useSettings(); const soundEntries = useMemo(() => { - let filtered = Object.entries(sounds).filter(([key]) => !key.startsWith('_')); + let filtered = Object.entries(sounds) + .filter(([key]) => !key.startsWith('_')) + .sort((a, b) => a[0].localeCompare(b[0])); if (!sounds) { return []; } @@ -43,7 +45,7 @@ export function SoundsTab() { }); return (