Skip to content

Commit

Permalink
fix(chatviewlist): increase hidden/encrypted chat blur
Browse files Browse the repository at this point in the history
fix #1307
  • Loading branch information
corlard3y committed May 22, 2024
1 parent 836e5c1 commit c244626
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ export const ChatViewList: React.FC<IChatViewListProps> = (options: IChatViewLis
return () => clearTimeout(timer);
}

return () => {};
}, [chatAcceptStream, participantJoinStream]);

// Change listtype to 'UINITIALIZED' and hidden to true when participantRemoveStream or participantLeaveStream is received
Expand Down Expand Up @@ -416,5 +415,5 @@ const ChatViewListCard = styled(Section)<IThemeProps>`
`;

const ChatViewListCardInner = styled(Section)<IThemeProps>`
filter: ${(props) => (props.blur ? 'blur(6px)' : 'none')};
filter: ${(props) => (props.blur ? 'blur(12px)' : 'none')};
`;

0 comments on commit c244626

Please sign in to comment.