From 1d7a60d0e655ad36eb6289f779739ff5fef73314 Mon Sep 17 00:00:00 2001 From: wuls Date: Tue, 21 Jan 2025 15:58:34 +0800 Subject: [PATCH] remove redundancy code --- packages/qwik/src/core/shared/component-execution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/qwik/src/core/shared/component-execution.ts b/packages/qwik/src/core/shared/component-execution.ts index d6871cd6bca..a81d6ddd960 100644 --- a/packages/qwik/src/core/shared/component-execution.ts +++ b/packages/qwik/src/core/shared/component-execution.ts @@ -3,7 +3,7 @@ import { isQwikComponent, type OnRenderFn } from './component.public'; import { assertDefined } from './error/assert'; import { isQrl, type QRLInternal } from './qrl/qrl-class'; import { Fragment, JSXNodeImpl, _jsxSorted, isJSXNode, type Props } from './jsx/jsx-runtime'; -import type { FunctionComponent, JSXNodeInternal, JSXOutput } from './jsx/types/jsx-node'; +import type { JSXNodeInternal, JSXOutput } from './jsx/types/jsx-node'; import type { KnownEventNames } from './jsx/types/jsx-qwik-events'; import { invokeApply, newInvokeContext, untrack } from '../use/use-core'; import { type EventQRL, type UseOnMap } from '../use/use-on';