diff --git a/client/extensions/tga-sign-off/src/components/SignOffListItem.tsx b/client/extensions/tga-sign-off/src/components/SignOffListItem.tsx index 0dba802..77d7d2b 100644 --- a/client/extensions/tga-sign-off/src/components/SignOffListItem.tsx +++ b/client/extensions/tga-sign-off/src/components/SignOffListItem.tsx @@ -11,17 +11,12 @@ interface IPropsBase { user: IUser; readOnly?: boolean; appendContentDivider?: boolean; - buttonProps?: { - text: string; - icon: string; - onClick(): void; - }; + buttonProps?: Array>; } interface IPropsApproved extends IPropsBase { state: 'approved'; - fundingSource: string; - affiliation: string; + email: string; date: string; } @@ -59,25 +54,34 @@ export function SignOffListItem(props: IProps) { )} {props.buttonProps == null ? null : ( - -