From a657d838559d8b198c5efb38de60c459c669bc68 Mon Sep 17 00:00:00 2001 From: blam Date: Thu, 26 Oct 2023 19:05:42 +0200 Subject: [PATCH] chore: revert a little more Signed-off-by: blam --- .../src/components/EmptyState/MissingAnnotationEmptyState.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core-components/src/components/EmptyState/MissingAnnotationEmptyState.tsx b/packages/core-components/src/components/EmptyState/MissingAnnotationEmptyState.tsx index eb8b652924..efbfdb9999 100644 --- a/packages/core-components/src/components/EmptyState/MissingAnnotationEmptyState.tsx +++ b/packages/core-components/src/components/EmptyState/MissingAnnotationEmptyState.tsx @@ -43,7 +43,7 @@ const ANNOTATION_LINE = COMPONENT_YAML_TEMPLATE.split('\n').findIndex(line => ANNOTATION_REGEXP.test(line), ); -export type Props = { +type Props = { annotation: string | string[]; readMoreUrl?: string; };