From 15c867745fcd6b06563c9442ac0da195358d6812 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 9 Feb 2022 07:41:12 -0500 Subject: [PATCH] Restrict title name to be only string (#4839) Signed-off-by: Sebastian Malton --- src/renderer/components/+catalog/custom-category-columns.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/+catalog/custom-category-columns.ts b/src/renderer/components/+catalog/custom-category-columns.ts index 3d8a832ac0..007ca75223 100644 --- a/src/renderer/components/+catalog/custom-category-columns.ts +++ b/src/renderer/components/+catalog/custom-category-columns.ts @@ -12,7 +12,7 @@ import type { TableCellProps } from "../table"; */ export interface TitleCellProps { className?: string; - title: React.ReactNode; + title: string; } export interface CategoryColumnRegistration {