We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75637cd commit 31e3d95Copy full SHA for 31e3d95
1 file changed
packages/module/src/ResponseActions/ResponseActions.tsx
@@ -186,9 +186,7 @@ export const ResponseActions: FunctionComponent<ResponseActionProps> = ({
186
// We want to append the tooltip inline so that hovering the tooltip keeps the actions container visible
187
// when showActionsOnInteraction is true. Otherwise hovering the tooltip causes the actions container
188
// to disappear but the tooltip will remain visible.
189
- const getTooltipContainer = (): HTMLElement => {
190
- return responseActions.current || document.body;
191
- };
+ const getTooltipContainer = (): HTMLElement => responseActions.current || document.body;
192
193
const getTooltipProps = (tooltipProps?: TooltipProps) =>
194
({
0 commit comments