diff --git a/web/app/components/base/app-icon-picker/index.tsx b/web/app/components/base/app-icon-picker/index.tsx index 975f8aeb6c..048ae2a576 100644 --- a/web/app/components/base/app-icon-picker/index.tsx +++ b/web/app/components/base/app-icon-picker/index.tsx @@ -5,7 +5,6 @@ import type { Area } from 'react-easy-crop' import Modal from '../modal' import Divider from '../divider' import Button from '../button' -import { ImagePlus } from '../icons/src/vender/line/images' import { useLocalFileUploader } from '../image-uploader/hooks' import EmojiPickerInner from '../emoji-picker/Inner' import type { OnImageInput } from './ImageInput' @@ -16,6 +15,7 @@ import type { AppIconType, ImageFile } from '@/types/app' import cn from '@/utils/classnames' import { DISABLE_UPLOAD_IMAGE_AS_ICON } from '@/config' import { noop } from 'lodash-es' +import { RiImageCircleAiLine } from '@remixicon/react' export type AppIconEmojiSelection = { type: 'emoji' @@ -46,7 +46,7 @@ const AppIconPicker: FC = ({ const tabs = [ { key: 'emoji', label: t('app.iconPicker.emoji'), icon: 🤖 }, - { key: 'image', label: t('app.iconPicker.image'), icon: }, + { key: 'image', label: t('app.iconPicker.image'), icon: }, ] const [activeTab, setActiveTab] = useState('emoji') @@ -119,10 +119,10 @@ const AppIconPicker: FC = ({ {tabs.map(tab => (