diff --git a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx index e92eeb50..08237c2f 100644 --- a/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx +++ b/src/frontend/src/features/rooms/livekit/components/controls/Participants/ParticipantListItem.tsx @@ -20,6 +20,7 @@ import { MuteAlertDialog } from '../../MuteAlertDialog' import { useMuteParticipant } from '@/features/rooms/api/muteParticipant' import { useCanMute } from '@/features/rooms/livekit/hooks/useCanMute' import { ParticipantMenuButton } from '../../ParticipantMenu/ParticipantMenuButton' +import { PinBadge } from './PinBadge' type MicIndicatorProps = { participant: Participant @@ -106,7 +107,14 @@ export const ParticipantListItem = ({ })} > - +
+ + +
{ + const { inFocus } = useFocusToggleParticipant(participant) + + if (!inFocus) return + + return ( +
+ +
+ ) +}