From 66b026bf493d71a39e12825938fe54dc63aefd16 Mon Sep 17 00:00:00 2001 From: absidue <48293849+absidue@users.noreply.github.com> Date: Wed, 10 May 2023 20:32:00 +0200 Subject: [PATCH] fix(Utils): Circular dependency introduced in 38a83c3c2aa814150d1d9b8ed99fca915c1d67fe (#400) --- src/utils/Utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 6ba722b3..96413520 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -1,6 +1,6 @@ import { Memo } from '../parser/helpers.js'; import type { EmojiRun, TextRun } from '../parser/misc.js'; -import Text from '../parser/classes/misc/Text.js'; +import { Text } from '../parser/misc.js'; import type { FetchFunction } from '../types/PlatformShim.js'; import type PlatformShim from '../types/PlatformShim.js'; import userAgents from './user-agents.js';