Remove stray comma

This comma was showing up in the bottom left corner of the UI.
This commit is contained in:
Robin
2025-11-14 16:41:18 -05:00
parent 494ed7c126
commit 53aaa011b7

View File

@@ -62,7 +62,7 @@ Initializer.initBeforeReact()
.then(() => { .then(() => {
root.render( root.render(
<StrictMode> <StrictMode>
<App vm={new AppViewModel(globalScope)} />, <App vm={new AppViewModel(globalScope)} />
</StrictMode>, </StrictMode>,
); );
}) })