From 28bfb4542626b6bb781872af5faa8cadc4eafc56 Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Wed, 30 Jan 2019 16:56:27 +0900 Subject: Avoid export default --- src/remote/activitypub/misc/get-note-html.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/remote/activitypub/misc') diff --git a/src/remote/activitypub/misc/get-note-html.ts b/src/remote/activitypub/misc/get-note-html.ts index 687faebed4..967ee65544 100644 --- a/src/remote/activitypub/misc/get-note-html.ts +++ b/src/remote/activitypub/misc/get-note-html.ts @@ -1,6 +1,6 @@ import { INote } from '../../../models/note'; -import toHtml from '../../../mfm/toHtml'; -import parse from '../../../mfm/parse'; +import { toHtml } from '../../../mfm/toHtml'; +import { parse } from '../../../mfm/parse'; export default function(note: INote) { let html = toHtml(parse(note.text), note.mentionedRemoteUsers); -- cgit v1.2.3-freya