From c71c2a8710eccfbb5459bd4a1d949d562f128f7f Mon Sep 17 00:00:00 2001 From: garronej Date: Sat, 15 Oct 2022 15:39:32 +0200 Subject: [PATCH] Fix breaking change of 6.8 --- src/lib/components/KcApp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/KcApp.tsx b/src/lib/components/KcApp.tsx index 08a39da8..cf22d9c8 100644 --- a/src/lib/components/KcApp.tsx +++ b/src/lib/components/KcApp.tsx @@ -32,7 +32,7 @@ export type KcAppProps = KcProps & { kcContext: KcContextBase; i18n?: I18n; doFetchDefaultThemeResources?: boolean; - Template: (props: TemplateProps) => JSX.Element | null; + Template?: (props: TemplateProps) => JSX.Element | null; }; const KcApp = memo((props_: KcAppProps) => {