tidy(ui): disable isDebugging flag on root component

This commit is contained in:
psychedelicious
2024-09-04 08:46:15 +10:00
parent 376a626419
commit 5eb9e2ba04

View File

@@ -2,4 +2,4 @@ import ReactDOM from 'react-dom/client';
import InvokeAIUI from './app/components/InvokeAIUI';
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<InvokeAIUI isDebugging />);
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(<InvokeAIUI />);