#174 エラー回避と誤記修正

This commit is contained in:
2025-12-10 20:01:14 +09:00
parent 575d63dcba
commit 8b4b26065c
2 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ const renderTagTree = (
return [self,
...(tag.children
?.sort ((a, b) => a.name < b.name ? -1 : 1)
.flatMap (child => renderTagTree (child, nestLevel + 2, key)) ?? [])]
.flatMap (child => renderTagTree (child, nestLevel + 1, key)) ?? [])]
}