diff --git a/src/components/account-info.jsx b/src/components/account-info.jsx index 2d25a3ce..aff1006d 100644 --- a/src/components/account-info.jsx +++ b/src/components/account-info.jsx @@ -1385,6 +1385,7 @@ function AddRemoveListsSheet({ accountID, onClose }) { (async () => { try { const lists = await masto.v1.lists.list(); + lists.sort((a, b) => a.title.localeCompare(b.title)); const listsContainingAccount = await masto.v1.accounts .$select(accountID) .lists.list(); diff --git a/src/components/shortcuts-settings.jsx b/src/components/shortcuts-settings.jsx index cd90bcbe..62f47a6e 100644 --- a/src/components/shortcuts-settings.jsx +++ b/src/components/shortcuts-settings.jsx @@ -205,6 +205,7 @@ function ShortcutsSettings({ onClose }) { (async () => { try { const lists = await masto.v1.lists.list(); + lists.sort((a, b) => a.title.localeCompare(b.title)); setLists(lists); } catch (e) { console.error(e); diff --git a/src/pages/lists.jsx b/src/pages/lists.jsx index d1ff97f8..2eacb157 100644 --- a/src/pages/lists.jsx +++ b/src/pages/lists.jsx @@ -23,6 +23,7 @@ function Lists() { (async () => { try { const lists = await masto.v1.lists.list(); + lists.sort((a, b) => a.title.localeCompare(b.title)); console.log(lists); setLists(lists); setUIState('default');