79391006

Date: 2025-01-27 13:50:13
Score: 0.5
Natty:
Report link

In my case this error was caused because of using React fragment, code was more a less like:

return (
  <>
    {something.map(() => <p>foo</p>)}
  </>
)

fixed it by replacing <> and </> respectively with <div> and </div>

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: szymeo