We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ae677 commit 401802cCopy full SHA for 401802c
packages/node_modules/action-chain/src/utils.ts
@@ -35,11 +35,13 @@ function createProxyGetHandler(
35
}
36
return result
37
38
- } else if (isObject(target[prop])) {
+ }
39
+ if (isObject(target[prop])) {
40
return new Proxy(target[prop], {
41
get: createProxyGetHandler(path + '.' + prop.toString(), cb),
42
})
43
44
+ return target[prop]
45
46
47
0 commit comments