You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to set a property in a props function, when a dependency didn't return an object causes this error which is hard to find the root cause. There should be a handler around calling the props function, which determines if this._props is undefined or not, and throws an error so users can correct the issue.
TypeError: Cannot set property 'property' of undefined
at Object.module.exports.rc.createConductor.props [as propsFn]
at Conductor._mergeDeps (/restify-conductor/lib/Conductor.js:256:35)
The text was updated successfully, but these errors were encountered:
Trying to set a property in a props function, when a dependency didn't return an object causes this error which is hard to find the root cause. There should be a handler around calling the props function, which determines if
this._props
is undefined or not, and throws an error so users can correct the issue.The text was updated successfully, but these errors were encountered: