Skip to content

Commit c8d82bc

Browse files
committed
Cleanup
1 parent 8aed3a6 commit c8d82bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/connect-react/src/utils/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function valuesFromOptions<T>(value: unknown | T[] | PropOptions<T>): T[]
4040
}
4141
return results
4242
}
43-
if (value && typeof value === "object" && "__lv" in value && Array.isArray(value.__lv)) {
43+
if (value && typeof value === "object" && Array.isArray(value.__lv)) {
4444
return value.__lv as T[]
4545
}
4646
if (!Array.isArray(value))

0 commit comments

Comments
 (0)