Fix type error in useDownloadTerms

This commit is contained in:
garronej
2023-04-03 20:10:40 +02:00
parent c5899eba94
commit d308c04465

View File

@ -10,7 +10,7 @@ import { KcContext } from "../kcContext";
export const evtTermMarkdown = Evt.create<string | undefined>(undefined);
export type KcContextLike = {
pageId: KcContext["pageId"];
pageId: string;
locale?: {
currentLanguageTag: string;
};