Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed May 17, 2023
1 parent ac9eb27 commit f5102f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mail/Utils/Handlebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
});
Expand Down

0 comments on commit f5102f3

Please sign in to comment.