Fix couple of Spaces regressions (#6989)

This commit is contained in:
Michael Telatynski 2021-10-19 17:10:34 +01:00 committed by GitHub
parent a9c27e22b5
commit 427afc83aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View file

@ -146,13 +146,6 @@ $activeBorderColor: $secondary-content;
padding: 4px;
}
&:not(.mx_SpaceButton_narrow) {
.mx_SpaceButton_selectionWrapper {
width: 100%;
overflow: hidden;
}
}
.mx_SpaceButton_name {
flex: 1;
margin-left: 8px;

View file

@ -128,7 +128,7 @@ const useMyRoomMembership = (room: Room) => {
};
const SpaceInfo = ({ space }: { space: Room }) => {
const summary = useAsyncMemo(() => {
const summary = useAsyncMemo(async () => {
if (space.getMyMembership() !== "invite") return;
try {
return space.client.getRoomSummary(space.roomId);