From f5102f3e550dd84091526e1846012ad0cb9d796a Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Wed, 17 May 2023 21:27:19 +0100 Subject: [PATCH] fix fmt --- Mail/Utils/Handlebars.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mail/Utils/Handlebars.ts b/Mail/Utils/Handlebars.ts index 8f6dda4fbe..c5b91522be 100644 --- a/Mail/Utils/Handlebars.ts +++ b/Mail/Utils/Handlebars.ts @@ -46,7 +46,7 @@ Handlebars.registerHelper('ifCond', function (v1, v2, options) { return options.inverse(this); }); -Handlebars.registerHelper('concat', (v1, v2) => { +Handlebars.registerHelper('concat', (v1: any, v2: any) => { // contact v1 and v2 return v1 + v2; });