Skip to content

Commit

Permalink
Appease type checking with lazy loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerry350 committed May 31, 2024
1 parent a3e04b2 commit f9e66a2
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,9 @@ import { EuiIconTip } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import React from 'react';

interface SmartFieldFallbackTooltipProps {
const SmartFieldFallbackTooltip: React.FC<{
associatedSmartFields: string;
}

const SmartFieldFallbackTooltip: React.FC<SmartFieldFallbackTooltipProps> = ({
associatedSmartFields,
}) => {
}> = ({ associatedSmartFields }) => {
return (
<EuiIconTip
anchorProps={{ 'data-test-subj': 'smartFieldFallbackTooltipIcon' }}
Expand Down

0 comments on commit f9e66a2

Please sign in to comment.