Apply prettier changes

This commit is contained in:
AMelonInsideLemon 2024-06-26 05:51:59 +00:00 committed by AMelonInsideLemon
parent 50ae9463da
commit 995ffc23cc

View File

@ -93,7 +93,7 @@ export const getString = (key: string, dict: Record<string, string>): string =>
return dict[key] ?? key; return dict[key] ?? key;
}; };
export const getDict = (lang: string | undefined) =>{ export const getDict = (lang: string | undefined) => {
switch (lang) { switch (lang) {
case "de": case "de":
return dict_de; return dict_de;
@ -141,4 +141,4 @@ export const getDict = (lang: string | undefined) =>{
default: default:
return dict_en; return dict_en;
} }
} };