From 08c0a987ba6d940785b6a5a9bef64470f5e26772 Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Tue, 22 Jun 2021 18:35:29 +0200 Subject: [PATCH] F OpenNebula/one#5422: Remove socket on flow app --- src/fireedge/src/client/apps/flow/index.js | 37 ++++++++++------------ 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/src/fireedge/src/client/apps/flow/index.js b/src/fireedge/src/client/apps/flow/index.js index f319c6756d..d57fe61f2c 100644 --- a/src/fireedge/src/client/apps/flow/index.js +++ b/src/fireedge/src/client/apps/flow/index.js @@ -19,7 +19,6 @@ import PropTypes from 'prop-types' import { StaticRouter, BrowserRouter } from 'react-router-dom' import { Provider as ReduxProvider } from 'react-redux' -import SocketProvider from 'client/providers/socketProvider' import MuiProvider from 'client/providers/muiProvider' import NotistackProvider from 'client/providers/notistackProvider' import { TranslateProvider } from 'client/components/HOC' @@ -32,25 +31,23 @@ const APP_NAME = _APPS.flow.name const Flow = ({ store, location, context }) => ( - - - - - {location && context ? ( - // server build - - - - ) : ( - // browser build - - - - )} - - - - + + + + {location && context ? ( + // server build + + + + ) : ( + // browser build + + + + )} + + + )