diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 721ebfa..cbd6ac8 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -176,6 +176,7 @@ const generateStatusFooter = (status: APIStatus, isQuote = false, author: APIUse const generateCommunityNote = (status: APITwitterStatus): string => { if (status.community_note) { + console.log('community_note', status.community_note) const note = status.community_note; const entities = note.entities; entities.sort((a, b) => a.fromIndex - b.fromIndex); // sort entities by fromIndex @@ -195,7 +196,7 @@ const generateCommunityNote = (status: APITwitterStatus): string => { result += note.text.substring(lastToIndex, fromIndex); // Add the link - result += `${note.text.substring(fromIndex, toIndex)} `; + result += `${note.text.substring(fromIndex, toIndex)}`; lastToIndex = toIndex; }); @@ -206,7 +207,7 @@ const generateCommunityNote = (status: APITwitterStatus): string => {