From 0ce1b5499df699f602aa83ab87ad8b246d133eac Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 8 Oct 2022 01:53:33 -0400 Subject: [PATCH] fix(sidebarnavigation): no dont --- 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 8ed84ac..85228cc 100644 --- a/src/deck-components/SidebarNavigation.tsx +++ b/src/deck-components/SidebarNavigation.tsx @@ -16,7 +16,7 @@ export interface SidebarNavigationPage { export interface SidebarNavigationProps { title?: string; - pages: (SidebarNavigationPage | null)[]; + pages: SidebarNavigationPage[]; showTitle?: boolean; disableRouteReporting?: boolean; page?: string;