fix: blogroll sorting

This commit is contained in:
Cory Dransfeldt 2024-06-02 20:31:00 -07:00
parent 781e8c525b
commit a67d4b38a2
No known key found for this signature in database
3 changed files with 4 additions and 4 deletions

View file

@ -16,5 +16,5 @@ export default async function fetchGenresWithArtists() {
return []
}
return data
return data.sort((a, b) => a['name'].toLowerCase().localeCompare(b['name'].toLowerCase()))
}