Skip to content

Commit

Permalink
SpotlightTile should not duplicate the raised hand
Browse files Browse the repository at this point in the history
Signed-off-by: Milton Moura <[email protected]>
  • Loading branch information
mgcm committed Sep 9, 2024
1 parent 5ba42c0 commit 168abff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tile/SpotlightTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ interface SpotlightItemBaseProps {
member: RoomMember | undefined;
unencryptedWarning: boolean;
displayName: string;
raisedHand: boolean;
}

interface SpotlightUserMediaItemBaseProps extends SpotlightItemBaseProps {
Expand Down Expand Up @@ -144,6 +145,7 @@ const SpotlightItem = forwardRef<HTMLDivElement, SpotlightItemProps>(
member: vm.member,
unencryptedWarning,
displayName,
raisedHand: false,
};

return vm instanceof ScreenShareViewModel ? (
Expand Down

0 comments on commit 168abff

Please sign in to comment.