Skip to content

Commit

Permalink
🐛 fix: fix rename
Browse files Browse the repository at this point in the history
  • Loading branch information
bentwnghk committed Feb 5, 2024
1 parent cfea661 commit f6ecdff
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/app/settings/llm/Azure/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Azure, OpenAI } from '@lobehub/icons';
import { Form, type ItemGroup, Markdown } from '@lobehub/ui';
import { Form, type ItemGroup, Markdown } from '@bentwnghk/ui';
import { Form as AntForm, AutoComplete, Divider, Input, Switch } from 'antd';
import { createStyles } from 'antd-style';
import { debounce } from 'lodash-es';
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/llm/Bedrock/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Aws, Bedrock } from '@lobehub/icons';
import { Form, type ItemGroup } from '@lobehub/ui';
import { Form, type ItemGroup } from '@bentwnghk/ui';
import { Form as AntForm, Divider, Input, Select, Switch } from 'antd';
import { debounce } from 'lodash-es';
import { memo } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/llm/Google/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Google } from '@lobehub/icons';
import { Form, type ItemGroup } from '@lobehub/ui';
import { Form, type ItemGroup } from '@bentwnghk/ui';
import { Form as AntForm, Input, Switch } from 'antd';
import { debounce } from 'lodash-es';
import { memo } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/llm/Zhipu/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Zhipu } from '@lobehub/icons';
import { Form, type ItemGroup } from '@lobehub/ui';
import { Form, type ItemGroup } from '@bentwnghk/ui';
import { Form as AntForm, Input, Switch } from 'antd';
import { useTheme } from 'antd-style';
import { debounce } from 'lodash-es';
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModelSelect/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Icon, Tooltip } from '@lobehub/ui';
import { Icon, Tooltip } from '@bentwnghk/ui';
import { createStyles } from 'antd-style';
import { LucideEye, ToyBrick } from 'lucide-react';
import numeral from 'numeral';
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModelTag/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Tag } from '@lobehub/ui';
import { Tag } from '@bentwnghk/ui';
import { memo } from 'react';

import ModelIcon from './ModelIcon';
Expand Down
2 changes: 1 addition & 1 deletion src/features/AgentSetting/AgentPrompt/TokenTag.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TokenTag } from '@lobehub/ui';
import { TokenTag } from '@bentwnghk/ui';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { Flexbox } from 'react-layout-kit';
Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Error/APIKeyForm/Bedrock.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Aws } from '@lobehub/icons';
import { Icon } from '@lobehub/ui';
import { Icon } from '@bentwnghk/ui';
import { Button, Input, Select } from 'antd';
import { useTheme } from 'antd-style';
import { Network } from 'lucide-react';
Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Error/APIKeyForm/OpenAI.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { OpenAI } from '@lobehub/icons';
import { Icon } from '@lobehub/ui';
import { Icon } from '@bentwnghk/ui';
import { Button, Input } from 'antd';
import { useTheme } from 'antd-style';
import { Network } from 'lucide-react';
Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Error/ErrorJsonViewer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Highlighter } from '@lobehub/ui';
import { Highlighter } from '@bentwnghk/ui';
import { memo } from 'react';
import { Flexbox } from 'react-layout-kit';

Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Error/InvalidAccessCode.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Icon } from '@lobehub/ui';
import { Icon } from '@bentwnghk/ui';
import { Segmented } from 'antd';
import { AsteriskSquare, KeySquare } from 'lucide-react';
import { memo, useState } from 'react';
Expand Down
2 changes: 1 addition & 1 deletion src/features/Conversation/Error/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IPluginErrorType, PluginErrorType } from '@lobehub/chat-plugin-sdk';
import type { AlertProps } from '@lobehub/ui';
import type { AlertProps } from '@bentwnghk/ui';
import { memo } from 'react';

import { AgentRuntimeErrorType, ILobeAgentRuntimeErrorType } from '@/libs/agent-runtime';
Expand Down

0 comments on commit f6ecdff

Please sign in to comment.