Counselllor / Counsellor-Web

Validation of JSX maximum depth JS-0415
Anti-pattern
Minor
1 occurrence in this check
JSX tree is too deeply nested. Found 5 levels of nesting
208      </div>
209      <div className="colleges">
210        {filteredColleges.map((college, index) => (
211          <div212            className={`college ${activeIndex === index ? 'active' : ''}`}213            key={college.id}214            onClick={() => handleCollegeClick(college)}215            onTouchStart={() => handleTouchStart(index)}216            onTouchEnd={handleTouchEnd}217          >218            <div className="college-content">
219              <div className="up">
220                <img className="college-image" src={college.imageURL} alt="College Logo" />