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
I noticed that when getComponentName() is called on inner === true VNodes, the resolution for the name of the component is often cl, even though proto.displayName or proto.name contains the name of the actual component.
I could fix this in the code with a simple if inside getComponentName:
if(component.name==='cl'){deletecomponent.name;}
Again, I'm not sure if this is happening due to my setup with preact-compat or maybe it's related to the preact-compat-enzyme but it would be nice to know if this is intended operation of if I'm actually doing something wrong.
Can you help to figure this issue out as well?
The text was updated successfully, but these errors were encountered:
In the same setup as #43
I noticed that when
getComponentName()
is called oninner === true
VNodes, the resolution for the name of the component is oftencl
, even thoughproto.displayName
orproto.name
contains the name of the actual component.The string
cl
is coming from this line: https://github.com/developit/preact-compat/blob/e25d0607d8a00a3e2f9229f33de4dc0f63c8e931/src/index.js#L405I could fix this in the code with a simple if inside
getComponentName
:Again, I'm not sure if this is happening due to my setup with
preact-compat
or maybe it's related to thepreact-compat-enzyme
but it would be nice to know if this is intended operation of if I'm actually doing something wrong.Can you help to figure this issue out as well?
The text was updated successfully, but these errors were encountered: