Skip to content
Snippets Groups Projects
Commit 03f20599 authored by syuilo's avatar syuilo
Browse files

Add missing semicolon

parent d150b10b
No related branches found
Tags 3.1.1
No related merge requests found
......@@ -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}`,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment