Skip to content

Commit

Permalink
Merge pull request #103 from cloudflare/highlight-when-raised-hand
Browse files Browse the repository at this point in the history
Highlight participant window when hand is raised
  • Loading branch information
third774 authored Sep 5, 2024
2 parents 196ce87 + 201b1e8 commit f7c37e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/Participant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export const Participant = forwardRef<
</Tooltip>
)}
</div>
{user.speaking && (
{(user.speaking || user.raisedHand) && (
<div
className={cn(
'pointer-events-none absolute inset-0 h-full w-full border-4 border-orange-400',
Expand Down

0 comments on commit f7c37e3

Please sign in to comment.