diff --git a/plugins/catalog-graph/src/components/EntityRelationsGraph/types.ts b/plugins/catalog-graph/src/components/EntityRelationsGraph/types.ts index 5bc0a14d37..98eacf4d01 100644 --- a/plugins/catalog-graph/src/components/EntityRelationsGraph/types.ts +++ b/plugins/catalog-graph/src/components/EntityRelationsGraph/types.ts @@ -16,7 +16,7 @@ import { DependencyGraphTypes } from '@backstage/core-components'; import { MouseEventHandler } from 'react'; -import { Entity } from '@backstage/catalog-model/'; +import { Entity } from '@backstage/catalog-model'; /** * Additional Data for entities. @@ -31,7 +31,7 @@ export type EntityEdgeData = { /** * Whether the entity is visible or not. */ - // Not used, but has to be non empty to draw a label at all! + // Not used, but has to be non-empty to draw a label at all! label: 'visible'; };