From bda537de2c440509dae012207426a40bb7665640 Mon Sep 17 00:00:00 2001 From: sblausten Date: Fri, 17 Mar 2023 15:47:07 +0100 Subject: [PATCH] Rename prop Signed-off-by: sblausten --- .../CatalogKindExploreContent.test.tsx | 2 +- .../CatalogKindExploreContent/CatalogKindExploreContent.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.test.tsx b/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.test.tsx index 6075561ff1..4f4f0f034c 100644 --- a/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.test.tsx +++ b/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.test.tsx @@ -95,7 +95,7 @@ describe('', () => { const { getByText } = await renderInTestApp( - + , mountedRoutes, ); diff --git a/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.tsx b/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.tsx index f3f4ccd103..f6f76ce1e0 100644 --- a/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.tsx +++ b/plugins/explore/src/components/CatalogKindExploreContent/CatalogKindExploreContent.tsx @@ -89,15 +89,15 @@ const Body = (props: { kind: string }) => { /** @public */ export const CatalogKindExploreContent = (props: { - tabTitle?: string; + title?: string; kind: string; }) => { - const { kind, tabTitle } = props; + const { kind, title } = props; const kindLowercase = kind.toLocaleLowerCase(); const kindCapitalized = `${kind[0].toLocaleUpperCase()}${kind.substring(1)}`; return ( - + Discover the {pluralize(kindLowercase)} in your ecosystem.