Skip to content

Commit 58fb965

Browse files
committed
✨ add getCommentHeader
1 parent a1f6dee commit 58fb965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util/call-comment.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ export function getCommentTitle(
4141
}
4242
}
4343

44-
function createCallEventCommentHeader(locale: string) {
44+
export function getCommentHeader(locale: string) {
4545
const isGerman = locale.startsWith("de");
4646
return `<h1>${isGerman ? "Notizen" : "Note"} (CLINQ):</h1>`;
4747
}
4848

4949
export function getCommentContent(note: string, locale: string) {
50-
return `${createCallEventCommentHeader(locale)}${note}`;
50+
return `${getCommentHeader(locale)}${note}`;
5151
}
5252

5353
export function getCallDuration(

0 commit comments

Comments
 (0)