feat: remove logo ids, sorting alphabetically

This commit is contained in:
svensken94
2023-12-12 22:29:35 +03:00
parent c557342eee
commit b0d2957896
4 changed files with 2 additions and 285 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
if (searchTerm.length === 0) {
filteredSvgs = svgsByCategory.sort((a: iSVG, b: iSVG) => {
return b.id - a.id;
return a.title.localeCompare(b.title);
});
}