From 44d9b90cdcfb9e6441fdb1e4b21fe844f1f29fd5 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sun, 18 Jun 2023 13:15:18 -0400 Subject: [PATCH] fix(SidebarNavigation): allow ReactNode for page title --- src/deck-components/SidebarNavigation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deck-components/SidebarNavigation.tsx b/src/deck-components/SidebarNavigation.tsx index 10ad495..167178f 100644 --- a/src/deck-components/SidebarNavigation.tsx +++ b/src/deck-components/SidebarNavigation.tsx @@ -3,7 +3,7 @@ import { ReactNode, VFC } from 'react'; import { Module, findModuleChild } from '../webpack'; export interface SidebarNavigationPage { - title: string; + title: ReactNode; content: ReactNode; icon?: ReactNode; visible?: boolean;