feat(participants): add profile links to usernames in Participants tab

Enabled profile links for all usernames in the event Participants sidebar.
Users can now click on any participant's username to view their public
profile page at /u/username.

This improves user discoverability and allows participants to learn more
about other dancers before connecting or sending match requests.

Changes:
- Set linkToProfile={true} in ParticipantsSidebar for all UserListItem components
- Usernames now display as clickable links with hover state
This commit is contained in:
Radosław Gierwiało
2025-12-05 22:18:33 +01:00
parent 229aafc8e9
commit 2cab8c3eba

View File

@@ -92,6 +92,7 @@ const ParticipantsSidebar = ({
heats={thisUserHeats} heats={thisUserHeats}
competitorNumber={competitorNumber} competitorNumber={competitorNumber}
showHeats={true} showHeats={true}
linkToProfile={true}
actionButton={ actionButton={
<button <button
onClick={() => onMatchWith?.(displayUser.userId)} onClick={() => onMatchWith?.(displayUser.userId)}