From 81e046c27b73760acc5bffd51019516a2bbad94c Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Tue, 10 Aug 2021 10:45:09 -0400 Subject: [PATCH] 17532: Remove unused code in renderers Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- src/views-components/data-explorer/renderers.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/views-components/data-explorer/renderers.tsx b/src/views-components/data-explorer/renderers.tsx index 4a56b142..f28f8aa0 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -458,10 +458,8 @@ export const ResourceOwnerWithName = }); export const UserNameFromID = - compose( - userFromID, - withStyles({}, { withTheme: true })) - ((props: { uuid: string, userFullname: string, dispatch: Dispatch }) => { + compose(userFromID)( + (props: { uuid: string, userFullname: string, dispatch: Dispatch }) => { const { uuid, userFullname, dispatch } = props; if (userFullname === '') { -- 2.30.2