refac/fix

This commit is contained in:
Timothy Jaeryang Baek
2025-11-04 18:12:00 -05:00
parent 75efa4f931
commit 2a98ba0ff8

View File

@@ -319,9 +319,7 @@
.flatMap((item) => item.model?.tags ?? [])
.map((tag) => tag.name.toLowerCase())
)
)
.sort((a, b) => a.localeCompare(b))
.map((tag) => capitalizeFirstLetter(tag));
).sort((a, b) => a.localeCompare(b));
}
});