From 6c5af91993a1ab1f95bdb102588714b483788c44 Mon Sep 17 00:00:00 2001 From: Heather Lee Date: Wed, 5 May 2021 16:01:45 -0700 Subject: [PATCH] Fix references to type Signed-off-by: Heather Lee --- plugins/catalog/src/components/CatalogPage/CatalogPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/catalog/src/components/CatalogPage/CatalogPage.tsx b/plugins/catalog/src/components/CatalogPage/CatalogPage.tsx index 2484b5cd29..bbb26d7be7 100644 --- a/plugins/catalog/src/components/CatalogPage/CatalogPage.tsx +++ b/plugins/catalog/src/components/CatalogPage/CatalogPage.tsx @@ -24,7 +24,6 @@ import { useApi, useRouteRef, } from '@backstage/core'; -import { EntityRow } from '@backstage/catalog-model'; import { catalogApiRef, isOwnerOf, @@ -44,6 +43,7 @@ import { CatalogFilterType, } from '../CatalogFilter/CatalogFilter'; import { CatalogTable } from '../CatalogTable/CatalogTable'; +import { EntityRow } from '../CatalogTable/types'; import { ResultsFilter } from '../ResultsFilter/ResultsFilter'; import { useOwnUser } from '../useOwnUser'; import CatalogLayout from './CatalogLayout';