[FIX] Remove duplicated sCU condition (#2194)

This commit is contained in:
Diego Mello 2020-06-17 14:39:49 -03:00 committed by GitHub
parent 36b37eb747
commit 8da50c2d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 6 deletions

View File

@ -65,12 +65,6 @@ class RoomHeaderView extends Component {
if (nextProps.goRoomActionsView !== goRoomActionsView) { if (nextProps.goRoomActionsView !== goRoomActionsView) {
return true; return true;
} }
if (nextProps.width !== width) {
return true;
}
if (nextProps.height !== height) {
return true;
}
return false; return false;
} }