16159: Merge branch 'master' into 16159-logout-request-with-token
[arvados-workbench2.git] / src / components / tree / virtual-tree.tsx
index 52867a836cdab2b971ad00198f45f950af51c659..5eb23ba194dd6bbb27feac0a356bcd9a29641ac5 100644 (file)
@@ -188,7 +188,6 @@ export const VirtualTree = withStyles(styles)(
     class Component<T> extends React.Component<TreeProps<T> & WithStyles<CssRules>, {}> {
         render(): ReactElement<any> {
             const { items, render } = this.props;
-
             return <AutoSizer>
                 {({ height, width }) => {
                     return VirtualList(height, width, items || [], render, this.props);