From 53aaa011b769b3ee18945ac9ee5565cbc71700a1 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 14 Nov 2025 16:41:18 -0500 Subject: [PATCH] Remove stray comma This comma was showing up in the bottom left corner of the UI. --- src/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.tsx b/src/main.tsx index e41aaff8..946e0238 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -62,7 +62,7 @@ Initializer.initBeforeReact() .then(() => { root.render( - , + , ); })