diff --git a/web/app.react.js b/web/app.react.js --- a/web/app.react.js +++ b/web/app.react.js @@ -163,9 +163,21 @@ render() { let content; if (this.props.loggedIn) { - content = this.renderMainContent(); + content = ( + <> + + {this.renderMainContent()} + {this.props.modals} + + + ); } else { - content = ; + content = ( + <> + + {this.props.modals} + + ); } return ( @@ -181,7 +193,6 @@ {content} - {this.props.modals} @@ -214,43 +225,41 @@ }); return ( - -
- - - -
-
-

- - Comm - -

- {navigationArrows} -
- -
+
+ + + +
+
+

+ + Comm + +

+ {navigationArrows} +
+
-
- {mainContent} -
-
+
+ {mainContent} +
+
- +
); }