Add missing semicolon

This commit is contained in:
syuilo 2018-06-17 07:39:51 +09:00
parent d150b10b3e
commit 03f20599ba

View file

@ -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}`,