Fix type error

This commit is contained in:
Robin Townsend 2022-10-27 09:43:17 -04:00
parent 1a329966ba
commit 7038a76fc1

View File

@ -52,7 +52,7 @@ if (!window.isSecureContext) {
}
if (fatalError !== null) {
ReactDOM.render(fatalError.message, document.getElementById("root"));
ReactDOM.render(<>fatalError.message</>, document.getElementById("root"));
throw fatalError; // Stop the app early
}