Merge pull request #6819 from matrix-org/t3chguy/fix/build1
This commit is contained in:
commit
3da02f1546
2 changed files with 5 additions and 6 deletions
|
@ -28,7 +28,6 @@ import { linkifyElement } from "../../HtmlUtils";
|
|||
import defaultDispatcher from "../../dispatcher/dispatcher";
|
||||
import { Action } from "../../dispatcher/actions";
|
||||
import { UserTab } from "../views/dialogs/UserSettingsDialog";
|
||||
import MainSplit from './MainSplit';
|
||||
|
||||
interface IProps {
|
||||
groupId: string;
|
||||
|
@ -49,11 +48,11 @@ const LegacyCommunityPreview = ({ groupId }: IProps) => {
|
|||
|
||||
if (!groupSummary) {
|
||||
return <main className="mx_SpaceRoomView">
|
||||
<MainSplit>
|
||||
<div className="mx_MainSplit">
|
||||
<div className="mx_SpaceRoomView_preview">
|
||||
<Spinner />
|
||||
</div>
|
||||
</MainSplit>
|
||||
</div>
|
||||
</main>;
|
||||
}
|
||||
|
||||
|
@ -70,7 +69,7 @@ const LegacyCommunityPreview = ({ groupId }: IProps) => {
|
|||
|
||||
return <main className="mx_SpaceRoomView">
|
||||
<ErrorBoundary>
|
||||
<MainSplit>
|
||||
<div className="mx_MainSplit">
|
||||
<div className="mx_SpaceRoomView_preview">
|
||||
<GroupAvatar
|
||||
groupId={groupId}
|
||||
|
@ -108,7 +107,7 @@ const LegacyCommunityPreview = ({ groupId }: IProps) => {
|
|||
}
|
||||
</div>
|
||||
</div>
|
||||
</MainSplit>
|
||||
</div>
|
||||
</ErrorBoundary>
|
||||
</main>;
|
||||
};
|
||||
|
|
|
@ -24,7 +24,7 @@ import { Direction } from "re-resizable/lib/resizer";
|
|||
interface IProps {
|
||||
resizeNotifier: ResizeNotifier;
|
||||
collapsedRhs?: boolean;
|
||||
panel: JSX.Element;
|
||||
panel?: JSX.Element;
|
||||
}
|
||||
|
||||
@replaceableComponent("structures.MainSplit")
|
||||
|
|
Loading…
Reference in a new issue