From b821ac53909e25ba3c789b0cad64bd7e45c1392e Mon Sep 17 00:00:00 2001 From: MyPrototypeWhat Date: Tue, 14 Oct 2025 14:12:55 +0800 Subject: [PATCH] fix: update import path for RequireSome type in Toast component - Changed the import path for RequireSome type from '@types' to '@/types' to align with the project's directory structure. --- packages/ui/src/components/base/Toast/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/components/base/Toast/index.ts b/packages/ui/src/components/base/Toast/index.ts index 13b70088f6..de440f900c 100644 --- a/packages/ui/src/components/base/Toast/index.ts +++ b/packages/ui/src/components/base/Toast/index.ts @@ -1,5 +1,6 @@ import { addToast, closeAll, closeToast, getToastQueue, isToastClosing } from '@heroui/toast' -import type { RequireSome } from '@types' + +import type { RequireSome } from '@/types' type AddToastProps = Parameters[0] type ToastPropsColored = Omit