From f7ad6f5d1fb4e73a4edbd7a218097e780efd119a Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Tue, 8 Feb 2022 14:25:49 -0500 Subject: [PATCH] Restrict title name to be only string 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 {