Put speed holes in the code

We can make read receipts more efficient (and avoid double-animation) by using `PureComponent` which no-ops useless updates for us.
pull/21833/head
Travis Ralston 2021-02-26 22:25:50 -07:00
parent b3142d6138
commit 76ad93b937
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ try {
} catch (e) {
}
export default class ReadReceiptMarker extends React.Component {
export default class ReadReceiptMarker extends React.PureComponent {
static propTypes = {
// the RoomMember to show the RR for
member: PropTypes.object,