Skip to content

Commit

Permalink
Remove unnecessary type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
iblancof committed Oct 24, 2024
1 parent 8233181 commit 9fe837f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
ENTITY_LAST_SEEN,
ENTITY_TYPE,
} from '@kbn/observability-shared-plugin/common';
import { Entity, EntityColumnIds, EntityType } from '../../../common/entities';
import { EntityColumnIds, EntityType } from '../../../common/entities';
import { APIReturnType } from '../../api';
import { BadgeFilterWithPopover } from '../badge_filter_with_popover';
import { getColumns } from './grid_columns';
Expand Down Expand Up @@ -79,7 +79,7 @@ export function EntitiesGrid({

const renderCellValue = useCallback(
({ rowIndex, columnId }: EuiDataGridCellValueElementProps) => {
const entity: Entity = entities[rowIndex];
const entity = entities[rowIndex];
if (entity === undefined) {
return null;
}
Expand Down

0 comments on commit 9fe837f

Please sign in to comment.