fix: resolve ts build errors

This commit is contained in:
Peter Steinberger
2025-12-24 00:57:11 +00:00
parent e76d1b899b
commit 0139a77e94
2 changed files with 2 additions and 2 deletions

View File

@@ -30,6 +30,6 @@ export function applyTemplate(str: string | undefined, ctx: TemplateContext) {
if (!str) return "";
return str.replace(/{{\s*(\w+)\s*}}/g, (_, key) => {
const value = ctx[key as keyof TemplateContext];
return value ?? "";
return value == null ? "" : String(value);
});
}