From 9edd04510b2e408cdb37212204fc6987d1789cea Mon Sep 17 00:00:00 2001 From: Winzyl Olvido <59104773+wolvido@users.noreply.github.com> Date: Mon, 31 Mar 2025 11:20:15 +0800 Subject: [PATCH] fixed InternalTheme import --- src/components/Portal/Portal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Portal/Portal.tsx b/src/components/Portal/Portal.tsx index d44caf96d6..7c918d413e 100644 --- a/src/components/Portal/Portal.tsx +++ b/src/components/Portal/Portal.tsx @@ -1,6 +1,6 @@ import * as React from 'react'; -import type { InternalTheme } from 'src/types'; +import type { InternalTheme } from '../../types'; import PortalConsumer from './PortalConsumer'; import PortalHost, { PortalContext, PortalMethods } from './PortalHost';