diff --git a/src/components/Branding/WelcomeLogo/LobeChat.tsx b/src/components/Branding/WelcomeLogo/LobeChat.tsx index a3a9f18312707..6c4fe8fafb2d8 100644 --- a/src/components/Branding/WelcomeLogo/LobeChat.tsx +++ b/src/components/Branding/WelcomeLogo/LobeChat.tsx @@ -4,8 +4,10 @@ import dynamic from 'next/dynamic'; import { memo } from 'react'; import { Center } from 'react-layout-kit'; -const LogoThree = dynamic(() => import('@lobehub/ui/es/LogoThree'), { ssr: false }); -const LogoSpline = dynamic(() => import('@lobehub/ui/es/LogoThree/LogoSpline'), { ssr: false }); +const LogoThree = dynamic(() => import('@lobehub/ui/es/brand/LogoThree'), { ssr: false }); +const LogoSpline = dynamic(() => import('@lobehub/ui/es/brand/LogoThree/LogoSpline'), { + ssr: false, +}); const WelcomeLogo = memo<{ mobile?: boolean }>(({ mobile }) => { return mobile ? ( diff --git a/src/features/Conversation/Actions/Error.tsx b/src/features/Conversation/Actions/Error.tsx index eb1cae1c9bec5..e2326e69000c9 100644 --- a/src/features/Conversation/Actions/Error.tsx +++ b/src/features/Conversation/Actions/Error.tsx @@ -1,5 +1,5 @@ import { ActionIconGroup } from '@lobehub/ui'; -import { ActionsBarProps } from '@lobehub/ui/es/ChatList/ActionsBar'; +import { ActionsBarProps } from '@lobehub/ui/es/chat/ChatList/ActionsBar'; import { memo } from 'react'; import { useChatListActionsBar } from '../hooks/useChatListActionsBar';