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
As the global state grows, in particular if adding react components to it, the call stack can max out. There isnt really a need that I see to have react components in there at all, thus in this file:
else if (value['$$typeof'] == Symbol.for('react.element')) {
return "<react.element>"
}
I suppose we could get a little more fancy and put the signature of the component, name or something, but seems necessary at this point since it seems not many people have this issue.
The text was updated successfully, but these errors were encountered:
As the global state grows, in particular if adding react components to it, the call stack can max out. There isnt really a need that I see to have react components in there at all, thus in this file:
https://github.com/smapiot/piral/blob/007e0558e140cf11ba91b5f30d991ed593c18b60/src/utilities/piral-debug-
utils/src/decycle.ts#L12
Could we add something along the lines of:
I suppose we could get a little more fancy and put the signature of the component, name or something, but seems necessary at this point since it seems not many people have this issue.
The text was updated successfully, but these errors were encountered: