lint fixe

This commit is contained in:
itsMapleLeaf
2023-03-12 16:38:26 -05:00
parent b755290569
commit 7aaef5f85f
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ export function pruneNullishValues<T>(input: T): PruneNullishValues<T> {
}
const result: any = {}
for (const [key, value] of Object.entries(input)) {
for (const [key, value] of Object.entries(input as any)) {
if (value != undefined) {
result[key] = pruneNullishValues(value)
}