sort face names alphabetically

This commit is contained in:
Josh Hawkins 2025-05-21 07:07:19 -05:00
parent 0c1f0c235e
commit 362b86b585

View File

@ -103,7 +103,7 @@ export default function FaceSelectionDialog({
<LuPlus />
{t("createFaceLibrary.new")}
</SelectorItem>
{faceNames.map((faceName) => (
{faceNames.sort().map((faceName) => (
<SelectorItem
key={faceName}
className="flex cursor-pointer gap-2 smart-capitalize"