diff --git a/src/components/structures/RoomView.js b/src/components/structures/RoomView.js
index 4d52158dae..13523104ae 100644
--- a/src/components/structures/RoomView.js
+++ b/src/components/structures/RoomView.js
@@ -1566,20 +1566,23 @@ module.exports = createReactClass({
const TimelinePanel = sdk.getComponent("structures.TimelinePanel");
const RoomUpgradeWarningBar = sdk.getComponent("rooms.RoomUpgradeWarningBar");
const RoomRecoveryReminder = sdk.getComponent("rooms.RoomRecoveryReminder");
+ const ErrorBoundary = sdk.getComponent("elements.ErrorBoundary");
if (!this.state.room) {
const loading = this.state.roomLoading || this.state.peekLoading;
if (loading) {
return (
-
+
+
+
);
} else {
@@ -1597,18 +1600,20 @@ module.exports = createReactClass({
const roomAlias = this.state.roomAlias;
return (
-
+
+
+
);
}
@@ -1618,12 +1623,14 @@ module.exports = createReactClass({
if (myMembership == 'invite') {
if (this.state.joining || this.state.rejecting) {
return (
-
+
+
);
} else {
const myUserId = MatrixClientPeg.get().credentials.userId;
@@ -1638,14 +1645,16 @@ module.exports = createReactClass({
// We have a regular invite for this room.
return (
-
+
+
+
);
}
@@ -1942,41 +1951,43 @@ module.exports = createReactClass({
return (
-
-
-
- { auxPanel }
-
- { topUnreadMessagesBar }
- { jumpToBottom }
- { messagePanel }
- { searchResultsPanel }
-
-
-
-
- { statusBar }
+
+
+
+
+ {auxPanel}
+
+ {topUnreadMessagesBar}
+ {jumpToBottom}
+ {messagePanel}
+ {searchResultsPanel}
+
+ {previewBar}
+ {messageComposer}
- { previewBar }
- { messageComposer }
-
-
+
+
);
},