forked from FoundKeyGang/FoundKey
Add missing semicolon
This commit is contained in:
parent
d150b10b3e
commit
03f20599ba
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ export default async function renderNote(note: INote, dive = true) {
|
|||
|
||||
const hashtagTags = (note.tags || []).map(renderHashtag);
|
||||
const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention);
|
||||
const tag = hashtagTags.concat(mentionTags)
|
||||
const tag = hashtagTags.concat(mentionTags);
|
||||
|
||||
return {
|
||||
id: `${config.url}/notes/${note._id}`,
|
||||
|
|
Loading…
Reference in a new issue