Do not inject appupdated state or actions

This commit is contained in:
Alejandro Celaya
2025-11-15 10:28:33 +01:00
parent f301513f5b
commit 373f0dbbbb
7 changed files with 20 additions and 42 deletions

View File

@@ -2,6 +2,7 @@ import { createRoot } from 'react-dom/client';
import { Provider } from 'react-redux';
import { BrowserRouter } from 'react-router';
import pack from '../package.json';
import { appUpdateAvailable } from './app/reducers/appUpdates';
import { ErrorHandler } from './common/ErrorHandler';
import { ScrollToTop } from './common/ScrollToTop';
import { container } from './container';
@@ -11,7 +12,7 @@ import { setUpStore } from './store';
import './tailwind.css';
const store = setUpStore();
const { App, appUpdateAvailable } = container;
const { App } = container;
createRoot(document.getElementById('root')!).render(
<ContainerProvider value={container}>