Update packages/recorder/src/index.tsx

Co-authored-by: Max Schmitt <max@schmitt.mx>
Signed-off-by: Simon Knott <info@simonknott.de>
This commit is contained in:
Simon Knott 2024-08-08 15:05:13 +02:00 committed by GitHub
parent c55c560789
commit 3711474682
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,6 +22,6 @@ import { Main } from './main';
(async () => { (async () => {
applyTheme(); applyTheme();
// we'd like to migrate this to React 18, but concurrent mode seems to break some of our tests. // TODO: we'd like to migrate this to React 18, but concurrent mode seems to break some of our tests.
ReactDOM.render(<Main/>, document.querySelector('#root')); ReactDOM.render(<Main/>, document.querySelector('#root'));
})(); })();