chore: More typescript FIXME's removed

This commit is contained in:
Tom Moor
2022-01-06 21:25:42 -08:00
parent 8d05c752ea
commit c6cc04cad8
58 changed files with 199 additions and 221 deletions

View File

@@ -27,7 +27,7 @@ function getSortByField<T>(
function naturalSortBy<T>(
items: T[],
key: string | (() => string),
key: string | ((item: T) => string),
sortOptions?: NaturalSortOptions
): T[] {
if (!items) return [];