forked from Shiloh/remnantchat
fix: disable ripple effect in PeerList
This commit is contained in:
parent
26618c0309
commit
d14ae4c2b3
@ -48,13 +48,13 @@ export const PeerList = ({
|
||||
</PeerListHeader>
|
||||
<Divider />
|
||||
<List>
|
||||
<ListItemButton>
|
||||
<ListItemButton disableRipple={true}>
|
||||
<Typography>
|
||||
<PeerNameDisplay>{userId}</PeerNameDisplay> (you)
|
||||
</Typography>
|
||||
</ListItemButton>
|
||||
{peerList.map((peer: Peer) => (
|
||||
<ListItemButton key={peer.peerId}>
|
||||
<ListItemButton key={peer.peerId} disableRipple={true}>
|
||||
<PeerNameDisplay>{peer.userId}</PeerNameDisplay>
|
||||
</ListItemButton>
|
||||
))}
|
||||
|
Loading…
Reference in New Issue
Block a user