From f0b0603068a56a81317dca98eadd8ee984219bff Mon Sep 17 00:00:00 2001 From: Cee Chen Date: Wed, 31 Jan 2024 11:31:52 -0800 Subject: [PATCH] TS fixes - bah humbug --- src/components/tour/tour_step.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/tour/tour_step.tsx b/src/components/tour/tour_step.tsx index 3768e379b26..36a3660a48e 100644 --- a/src/components/tour/tour_step.tsx +++ b/src/components/tour/tour_step.tsx @@ -37,7 +37,8 @@ import { EuiTourHeader } from './_tour_header'; import { EuiTourFooter } from './_tour_footer'; import { euiTourStyles, euiTourBeaconStyles } from './tour.styles'; -type _EuiPopoverProps = EuiPopoverProps & HTMLAttributes; +type _EuiPopoverProps = EuiPopoverProps & + Omit, 'content' | 'title' | 'step'>; type _PopoverOverrides = 'button' | 'closePopover'; type _PopoverPartials = 'closePopover'; type ExtendedEuiPopoverProps = Omit<_EuiPopoverProps, _PopoverOverrides> &