remove the behavior of opening the folder to select files when clicking on the row-item div element

PHOTO EMBED

Tue May 23 2023 05:48:11 GMT+0000 (Coordinated Universal Time)

Saved by @JISSMONJOSE #react.js #css #javascript

const handleRowItemClick = (e) => {
  e.stopPropagation();
};

// ...

<div className="col-lg-6 row-item" {...getRootProps()} onClick={handleRowItemClick}>
  {/* Remaining code */}
</div>
content_copyCOPY