refs #14186 Merge branch 'origin/14186-progress-indicator-store'
[arvados.git] / src / views-components / side-panel / side-panel.tsx
index 780ecc7fbe77685a6d6c83f002fb46dbc9787610..739e9eac1139ee62b3b38eeb3b8988cea5cc3bb2 100644 (file)
@@ -12,7 +12,6 @@ import { navigateFromSidePanel } from '../../store/side-panel/side-panel-action'
 import { Grid } from '@material-ui/core';
 import { SidePanelButton } from '~/views-components/side-panel-button/side-panel-button';
 import { RootState } from '~/store/store';
-import { SidePanelProgress } from '~/views-components/progress/side-panel-progress';
 
 const DRAWER_WITDH = 240;
 
@@ -35,7 +34,6 @@ const mapDispatchToProps = (dispatch: Dispatch): SidePanelTreeProps => ({
 });
 
 const mapStateToProps = (state: RootState) => ({
-    sidePanelProgress: state.progressIndicator.sidePanelProgress.started
 });
 
 export const SidePanel = compose(
@@ -44,5 +42,5 @@ export const SidePanel = compose(
 )(({ classes, ...props }: WithStyles<CssRules> & SidePanelTreeProps) =>
     <Grid item xs>
         <SidePanelButton />
-        {props.sidePanelProgress ? <SidePanelProgress /> : <SidePanelTree {...props} />}
-    </Grid>);
\ No newline at end of file
+        <SidePanelTree {...props} />
+    </Grid>);