{ window.location.href = `/users/${user.id}`; }} onContextMenu={(e) => { e.preventDefault(); setCtxMenu({ x: e.clientX, y: e.clientY }); }} > {userDisplayLabel(user)} {user.username && ( @{user.username} )} {(user.followerCount !== undefined || user.followingCount !== undefined) && ( {user.followerCount ?? 0} followers {user.followingCount ?? 0} following )} {canFollow && ( )} {ctxMenu && ( setCtxMenu(null)} /> )}