17579: Fixed test issues removed not required files
[arvados-workbench2.git] / src / components / data-explorer / data-explorer.tsx
index 5f396bb4d0322eba1a032ce34a87e2f04943acec..78aae35051a078e1f80aa9e580af5c79a24f8422 100644 (file)
@@ -82,13 +82,8 @@ interface DataExplorerActionProps<T> {
 type DataExplorerProps<T> = DataExplorerDataProps<T> & DataExplorerActionProps<T> & WithStyles<CssRules>;
 
 export const DataExplorer = withStyles(styles)(
-    class DataExplorerGeneric<T> extends React.Component<DataExplorerProps<T>, { currentItemUuid: string }> {
-        constructor(props) {
-            super(props);
-            this.state = {
-                currentItemUuid: props.currentItemUuid
-            };
-        }
+    class DataExplorerGeneric<T> extends React.Component<DataExplorerProps<T>> {
+
         componentDidMount() {
             if (this.props.onSetColumns) {
                 this.props.onSetColumns(this.props.columns);