Skip to content

Commit

Permalink
💄 style: Upgrade lobe-ui (lobehub#4950)
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 authored Dec 10, 2024
1 parent 68e4379 commit 54ce087
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/components/Branding/WelcomeLogo/LobeChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? (
Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Actions/Error.tsx
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 54ce087

Please sign in to comment.