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.