We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae17b6 commit 481cab0Copy full SHA for 481cab0
src/components/Branding/ProductLogo/index.tsx
@@ -1,14 +1,14 @@
1
-import { LobeChat, LobeChatProps } from '@lobehub/ui/brand';
+import { LobeHub, LobeHubProps } from '@lobehub/ui/brand';
2
import { memo } from 'react';
3
4
import { isCustomBranding } from '@/const/version';
5
6
import CustomLogo from './Custom';
7
8
-export const ProductLogo = memo<LobeChatProps>((props) => {
+export const ProductLogo = memo<LobeHubProps>((props) => {
9
if (isCustomBranding) {
10
return <CustomLogo {...props} />;
11
}
12
13
- return <LobeChat {...props} />;
+ return <LobeHub {...props} />;
14
});
0 commit comments