Sort /api enum list alphabetically
| @@ -320,7 +320,7 @@ export function initDefaultSlashCommands() { | ||
| 320 | 320 | SlashCommandArgument.fromProps({ |
| 321 | 321 | description: 'API to connect to', |
| 322 | 322 | typeList: [ARGUMENT_TYPE.STRING], |
| 323 | 323 | enumList: Object.entries(CONNECT_API_MAP).sort(([a], [b]) => a.localeCompare(b)).map(([api, { selected }]) => |
| 324 | 324 | new SlashCommandEnumValue(api, selected, enumTypes.getBasedOnIndex(UNIQUE_APIS.findIndex(x => x === selected)), |
| 325 | 325 | selected[0].toUpperCase() ?? enumIcons.default)), |
| 326 | 326 | }), |