Skip to content

Commit

Permalink
Merge pull request #1312 from push-protocol/1307-bug-increase-bg-blur…
Browse files Browse the repository at this point in the history
…-when-groupchat-is-encrypted

🐛 [BUG] - <Increase bg blur when group/chat is encrypted>
corlard3y authored May 29, 2024
2 parents c52e517 + b0ac6c5 commit d8b026f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -293,7 +293,9 @@ export const ChatViewList: React.FC<IChatViewListProps> = (options: IChatViewLis
return () => clearTimeout(timer);
}

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

// Change listtype to 'UINITIALIZED' and hidden to true when participantRemoveStream or participantLeaveStream is received
@@ -585,5 +587,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 d8b026f

Please sign in to comment.