feat: disable non-cloud features

This commit is contained in:
Ali BARIN
2023-03-09 11:23:29 +00:00
parent bd2ad1d7a1
commit c81db8ae19
6 changed files with 49 additions and 20 deletions

View File

@@ -12,21 +12,23 @@ import routes from 'routes';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<SnackbarProvider>
<AuthenticationProvider>
<ApolloProvider>
<AutomatischInfoProvider>
<IntlProvider>
<ThemeProvider>
<Router>{routes}</Router>
<Router>
<SnackbarProvider>
<AuthenticationProvider>
<ApolloProvider>
<AutomatischInfoProvider>
<IntlProvider>
<ThemeProvider>
{routes}
<LiveChat />
</ThemeProvider>
</IntlProvider>
</AutomatischInfoProvider>
</ApolloProvider>
</AuthenticationProvider>
</SnackbarProvider>,
<LiveChat />
</ThemeProvider>
</IntlProvider>
</AutomatischInfoProvider>
</ApolloProvider>
</AuthenticationProvider>
</SnackbarProvider>
</Router>,
document.getElementById('root')
);