Fix breaking change of 6.8

This commit is contained in:
garronej
2022-10-15 15:39:32 +02:00
parent e55b881017
commit c71c2a8710

View File

@ -32,7 +32,7 @@ export type KcAppProps = KcProps & {
kcContext: KcContextBase; kcContext: KcContextBase;
i18n?: I18n; i18n?: I18n;
doFetchDefaultThemeResources?: boolean; doFetchDefaultThemeResources?: boolean;
Template: (props: TemplateProps) => JSX.Element | null; Template?: (props: TemplateProps) => JSX.Element | null;
}; };
const KcApp = memo((props_: KcAppProps) => { const KcApp = memo((props_: KcAppProps) => {