You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The services websocket was initiated in the AppContainer and causing all child components to continuously re-render every time there was a service check (which is effectively every second). In addition, the socket was never stopped when not needed (ie when the services component was unmounted).
Create a ServicesContainer that initiates the websocket as part of the container, and stops the socket when the container is unmounted.
Move the ContractsList to be part of the ContractsContainer with a `mode` switch.
Add Deployment page title and description.
@@ -53,9 +53,7 @@ class HomeContainer extends Component {
53
53
return(
54
54
<React.Fragment>
55
55
<PageHeadtitle="Dashboard"description="Overview of available services and logs. Interact with Embark using the console. Summary of deployed contracts."/>
0 commit comments