Ensure we do not load matrix-react-sdk is a manner which can white-screen

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/27685/head
Michael Telatynski 2024-07-08 15:52:53 +01:00
parent 668450325c
commit 99553210be
No known key found for this signature in database
GPG Key ID: A2B008A5F49F5D0D
2 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,6 @@ limitations under the License.
*/
import { logger } from "matrix-js-sdk/src/logger";
import { extractErrorMessageFromError } from "matrix-react-sdk/src/components/views/dialogs/ErrorDialog";
// These are things that can run before the skin loads - be careful not to reference the react-sdk though.
import { parseQsFromFragment } from "./url_utils";
@ -120,6 +119,7 @@ async function start(): Promise<void> {
showError,
showIncompatibleBrowser,
_t,
extractErrorMessageFromError,
} = await import(
/* webpackChunkName: "init" */
/* webpackPreload: true */

View File

@ -143,3 +143,5 @@ export async function loadModules(): Promise<void> {
}
export { _t } from "../languageHandler";
export { extractErrorMessageFromError } from "matrix-react-sdk/src/components/views/dialogs/ErrorDialog";