From 8847824fb7a28fa05796849f6a6f918d5670760f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9ry=20Debongnie?= Date: Wed, 19 Jan 2022 09:47:39 +0100 Subject: [PATCH] [FIX] remove circular dependency --- src/portal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portal.ts b/src/portal.ts index 5b1de234..4b81b067 100644 --- a/src/portal.ts +++ b/src/portal.ts @@ -1,4 +1,4 @@ -import { onWillUnmount } from "."; +import { onWillUnmount } from "./component/lifecycle_hooks"; import { xml } from "./app/template_set"; import { BDom, text, VNode } from "./blockdom"; import { Component } from "./component/component";