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
// To support SVG and other non-html elements, every element that gets rendered
152
-
// into the InPortal needs to match the portalNode's elementType.
153
-
// Non-elements like Text aren't checkable.
154
-
childNodes.forEach((childNode)=>{
155
-
if(childNodeinstanceofElement){
156
-
if(!validateElementType(childNode,elementType)){
157
-
thrownewError(`Invalid content for portal: "${elementType}" portalNodes must be used with ${elementType} elements, but InPortal received <${childNode.tagName}>.`);
0 commit comments