From 84f690e020f16289207e04fe1cb3e07c31450ce4 Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Thu, 22 Sep 2022 15:31:33 -0400 Subject: [PATCH] 16073: Remove unused styles Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- .../process-output-collection-files.ts | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/views/process-panel/process-output-collection-files.ts b/src/views/process-panel/process-output-collection-files.ts index e09078ae..d0b44cd1 100644 --- a/src/views/process-panel/process-output-collection-files.ts +++ b/src/views/process-panel/process-output-collection-files.ts @@ -14,7 +14,6 @@ import { openContextMenu, openCollectionFilesContextMenu } from 'store/context-m import { openUploadCollectionFilesDialog } from 'store/collections/collection-upload-actions'; import { ResourceKind } from "models/resource"; import { openDetailsPanel } from 'store/details-panel/details-panel-action'; -import { StyleRulesCallback, Theme, withStyles } from "@material-ui/core"; const mapDispatchToProps = (dispatch: Dispatch): Pick => ({ onUploadDataClick: (targetLocation?: string) => { @@ -56,16 +55,4 @@ const mapDispatchToProps = (dispatch: Dispatch): Pick = (theme: Theme) => ({ - wrapper: {}, - dataWrapper: {}, - leftPanel: {}, - rightPanel: {}, -}); - -export const ProcessOutputCollectionFiles = withStyles(styles)(connect(null, mapDispatchToProps)(Component)); +export const ProcessOutputCollectionFiles = connect(null, mapDispatchToProps)(Component); -- 2.30.2