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
Note, if anyone else gets this issue, it can be fixed externally via:
consthasNestedAnchors=(element,depth=0)=>{const{ tagName, children }=element;if(children===undefined||(tagName!=="a"&&depth===0)){returnfalse;}if(depth>0&&tagName==="a"){returntrue;}else{for(constchildofchildren){if(hasNestedAnchors(child,depth+1)){returntrue;}}returnfalse;}};
Grab the .md from here: https://raw.githubusercontent.com/daohu527/awesome-self-driving-car/master/README.md
The component will throw an error to console:
Warning: validateDOMNesting(...): <a> cannot appear as a descendant of <a>.
Not sure what's required to fix it, but you have the info :)
The text was updated successfully, but these errors were encountered: