We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1f6dee commit 58fb965Copy full SHA for 58fb965
src/util/call-comment.ts
@@ -41,13 +41,13 @@ export function getCommentTitle(
41
}
42
43
44
-function createCallEventCommentHeader(locale: string) {
+export function getCommentHeader(locale: string) {
45
const isGerman = locale.startsWith("de");
46
return `<h1>${isGerman ? "Notizen" : "Note"} (CLINQ):</h1>`;
47
48
49
export function getCommentContent(note: string, locale: string) {
50
- return `${createCallEventCommentHeader(locale)}${note}`;
+ return `${getCommentHeader(locale)}${note}`;
51
52
53
export function getCallDuration(
0 commit comments