From 7038a76fc1bf3bdfb4ccde8621a31bc47c990f89 Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Thu, 27 Oct 2022 09:43:17 -0400 Subject: [PATCH] Fix type error --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index b74c6cd..f8f3f0a 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -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 }