Skip to content

Commit

Permalink
Fix broken types
Browse files Browse the repository at this point in the history
  • Loading branch information
davismcphee committed Dec 7, 2023
1 parent 3843a4c commit dbb12eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
import { withSuspense } from '@kbn/shared-ux-utility';
import { lazy } from 'react';

export type { LogExplorerTabsParams, LogExplorerTabsProps } from './log_explorer_tabs';
export type { LogExplorerTabsProps } from './log_explorer_tabs';

export const LogExplorerTabs = withSuspense(lazy(() => import('./log_explorer_tabs')));
6 changes: 1 addition & 5 deletions src/plugins/discover/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,4 @@ export type {
} from './customizations';
export { SEARCH_EMBEDDABLE_TYPE, SEARCH_EMBEDDABLE_CELL_ACTIONS_TRIGGER_ID } from './embeddable';
export { loadSharingDataHelpers } from './utils';
export {
LogExplorerTabs,
type LogExplorerTabsParams,
type LogExplorerTabsProps,
} from './components/log_explorer_tabs';
export { LogExplorerTabs, type LogExplorerTabsProps } from './components/log_explorer_tabs';

0 comments on commit dbb12eb

Please sign in to comment.