⚙️ Add support for download light & dark svgs.

This commit is contained in:
pheralb
2023-12-17 21:03:37 +00:00
parent ffff743283
commit 6a0520e2f8
2 changed files with 98 additions and 29 deletions
-1
View File
@@ -23,7 +23,6 @@
let filteredSvgs: iSVG[] = [];
// Order by last added:
if (searchTerm.length === 0) {
filteredSvgs = allSvgs.sort((a: iSVG, b: iSVG) => {
return b.id! - a.id!;