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
{{ message }}
This repository was archived by the owner on Apr 9, 2020. It is now read-only.
Basically I ran into this issue where I would get a TypeError in a Backbone constructor only when I was running our hot config. The constructor for this backbone view is on the prototype of another view and was being used like this:
const someView = new this.SomeViewConstructor();
Turns out the context in SomeViewConstructor was a proxiedMethod. Apparently this constructor is being wrapped by react-proxy even though this module did not export a react component.