fix: latex type adding an n in the invoice pdf

This commit is contained in:
Nikolaj Fabricius-Bjerre 2024-04-23 22:31:21 +02:00
parent bacbec5597
commit 289f5deaa6
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ function generateAccountInfo() {
result += `& & \\textbf{Konto nr.:} & ${locals.accountno} \\\\\n`;
}
if (locals?.regno) {
result += `& & \\textbf{Reg nr.:} & ${locals.regno} \\\\n`;
result += `& & \\textbf{Reg nr.:} & ${locals.regno} \\\\\n`;
}
return result;
}