From 35f19d53a54f0d090fac11c173a2ca55249bd219 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 24 Aug 2020 16:44:47 +0100 Subject: [PATCH] Mention issue for view state store --- src/components/structures/MatrixChat.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/structures/MatrixChat.tsx b/src/components/structures/MatrixChat.tsx index 9929cc523e..b1c3a1c16e 100644 --- a/src/components/structures/MatrixChat.tsx +++ b/src/components/structures/MatrixChat.tsx @@ -2088,7 +2088,9 @@ export default class MatrixChat extends React.PureComponent { export function isLoggedIn(): boolean { // JRS: Maybe we should move the step that writes this to the window out of - // `element-web` and into this file? + // `element-web` and into this file? Better yet, we should probably create a + // store to hold this state. + // See also https://github.com/vector-im/element-web/issues/15034. const app = window.matrixChat; return app && (app as MatrixChat).state.view === Views.LOGGED_IN; }