From 153771d4d802769e4c1fd32ea911782948b435d6 Mon Sep 17 00:00:00 2001 From: Ben Keil Date: Fri, 3 Nov 2023 22:56:42 +0100 Subject: [PATCH] fix: linting errors Signed-off-by: Ben Keil --- .../src/components/EntityRelationsGraph/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'; };