We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e58686c commit 400dbb2Copy full SHA for 400dbb2
packages/core/src/v3/utils/flattenAttributes.ts
@@ -47,7 +47,7 @@ export function flattenAttributes(
47
}
48
49
// Add object to seen set
50
- if (typeof obj === "object") {
+ if (obj !== null && typeof obj === "object") {
51
seen.add(obj);
52
53
0 commit comments