♻️ Add fallback head title for board page

This commit is contained in:
Meier Lukas
2023-08-05 16:21:24 +02:00
parent da0314a180
commit f650915832
2 changed files with 11 additions and 8 deletions

View File

@@ -8,3 +8,7 @@ export const trimStringEnding = (original: string, toTrimIfExists: string[]) =>
return original;
};
export const firstUpperCase = (str: string) => {
return str.charAt(0).toUpperCase() + str.slice(1);
};