Counselllor / Counsellor-Web

Avoid .bind() or local functions in JSX properties JS-0417
Performance
Major
1 occurrence in this check
JSX props should not use arrow functions
42          <div
43            key={contributor.login}
44            className="bg-white m-2 p-8 rounded-lg shadow-md text-center cursor-pointer transform transition-transform duration-200 hover:scale-105"
45            onClick={() => handleProfileClick(contributor.login)}46          >
47            <img
48              src={contributor.avatar_url}