diff --git a/src/frontend/src/components/buttons/ActionButton.tsx b/src/frontend/src/components/buttons/ActionButton.tsx index 9acc6c66ad..4b8d6265b3 100644 --- a/src/frontend/src/components/buttons/ActionButton.tsx +++ b/src/frontend/src/components/buttons/ActionButton.tsx @@ -41,8 +41,8 @@ export function ActionButton(props: ActionButtonProps) { aria-label={`action-button-${identifierString( props.tooltip ?? props.text ?? '' )}`} - onClick={() => { - props.onClick(); + onClick={(event: any) => { + props.onClick(event); }} variant={props.variant ?? 'transparent'} >