Add missing semicolon

This commit is contained in:
syuilo 2018-06-17 07:39:51 +09:00
parent 0ef77dd05c
commit 68d7c4de0d

View file

@ -56,7 +56,7 @@ export default async function renderNote(note: INote, dive = true) {
const hashtagTags = (note.tags || []).map(renderHashtag); const hashtagTags = (note.tags || []).map(renderHashtag);
const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention); const mentionTags = (note.mentionedRemoteUsers || []).map(renderMention);
const tag = hashtagTags.concat(mentionTags) const tag = hashtagTags.concat(mentionTags);
return { return {
id: `${config.url}/notes/${note._id}`, id: `${config.url}/notes/${note._id}`,