now displays correct salutation instead of undefined

This commit is contained in:
Patrick 2025-10-16 01:26:51 +02:00
parent 07b7477940
commit 2b15580e3c
1 changed files with 4 additions and 4 deletions

View File

@ -59,13 +59,13 @@ const TEMPLATE_EST = "template-est.tex";
const TEMPLATE_EST_PATH = `./templates/${TEMPLATE_EST}`;
const SALUTATION: Record<string, string> = {
m: "Herrn",
w: "Frau"
M: "Herrn",
W: "Frau"
}
const GENDER_END: Record<string, string> = {
m: "",
w: "in",
M: "",
W: "in",
}
// this may be a race condition???