From fb9461508e4c300446b59a8b5195126d178a292c Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Thu, 25 Mar 2021 05:36:45 +0100 Subject: [PATCH] No need to explicitly import from index --- ts/editor/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/editor/index.ts b/ts/editor/index.ts index b6488e9b6..30f995146 100644 --- a/ts/editor/index.ts +++ b/ts/editor/index.ts @@ -1,7 +1,7 @@ /* Copyright: Ankitects Pty Ltd and contributors * License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */ -import { filterHTML } from "html-filter/index"; +import { filterHTML } from "html-filter"; import { caretToEnd } from "./helpers"; import { saveField } from "./changeTimer";