fix: alphabetize should be case-insensitive

This commit is contained in:
Richard Macias
2026-01-26 23:22:45 -06:00
parent f6e9dceffc
commit b3458bd75e
3 changed files with 11 additions and 9 deletions

View File

@@ -48,7 +48,9 @@ def generate_category_tables(apps: list[dict[str, Any]]) -> str:
"|------------------|------------------|---------------------------|----------------------|"
)
apps_in_category = sorted(categorized[category], key=get_display_name)
apps_in_category = sorted(
categorized[category], key=lambda app: get_display_name(app).lower()
)
for app in apps_in_category:
meta = app.get("meta", {})