From a941bbee61a2737456e46ce3f5e878b87e3d0856 Mon Sep 17 00:00:00 2001 From: blam Date: Mon, 13 Nov 2023 12:35:01 +0100 Subject: [PATCH] chore: fix api-report Signed-off-by: blam --- plugins/catalog-react/api-report.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/catalog-react/api-report.md b/plugins/catalog-react/api-report.md index e486aad231..e35f1cd64a 100644 --- a/plugins/catalog-react/api-report.md +++ b/plugins/catalog-react/api-report.md @@ -196,7 +196,7 @@ export const EntityDisplayName: (props: EntityDisplayNameProps) => JSX.Element; // @public export type EntityDisplayNameProps = { entityRef: Entity | CompoundEntityRef | string; - noIcon?: boolean; + hideIcon?: boolean; noTooltip?: boolean; defaultKind?: string; defaultNamespace?: string; @@ -399,7 +399,7 @@ export type EntityRefLinkProps = { defaultNamespace?: string; title?: string; children?: React_2.ReactNode; - noIcon?: boolean; + hideIcon?: boolean; } & Omit; // @public @@ -413,7 +413,7 @@ export type EntityRefLinksProps< > = { defaultKind?: string; entityRefs: TRef[]; - noIcons?: boolean; + hideIcons?: boolean; fetchEntities?: boolean; getTitle?(entity: TRef): string | undefined; } & Omit;