We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 337ae03 commit 5fd4a6aCopy full SHA for 5fd4a6a
packages/module/src/ResponseActions/ResponseActions.tsx
@@ -158,9 +158,7 @@ export const ResponseActions: FunctionComponent<ResponseActionProps> = ({
158
// We want to append the tooltip inline so that hovering the tooltip keeps the actions container visible
159
// when showActionsOnInteraction is true. Otherwise hovering the tooltip causes the actions container
160
// to disappear but the tooltip will remain visible.
161
- const getTooltipContainer = (): HTMLElement => {
162
- return responseActions.current || document.body;
163
- };
+ const getTooltipContainer = (): HTMLElement => responseActions.current || document.body;
164
165
const getTooltipProps = (tooltipProps?: TooltipProps) =>
166
({
0 commit comments