From a1ef6b4c4457d0143ddb465ca92945c1580b9216 Mon Sep 17 00:00:00 2001 From: Lei OT Date: Mon, 11 Mar 2024 16:39:11 +0800 Subject: [PATCH] . --- src/views/ChatHistory.jsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/views/ChatHistory.jsx b/src/views/ChatHistory.jsx index a7e464e..024bbd2 100644 --- a/src/views/ChatHistory.jsx +++ b/src/views/ChatHistory.jsx @@ -1,15 +1,12 @@ -import { useNavigate } from 'react-router-dom'; import { memo, useCallback, useEffect, useRef, useState, forwardRef } from 'react'; -import { Row, Col, Divider, Table, Card, Button, Input, Flex, Layout, Space, Empty, Radio, Select, DatePicker, Form, List, Avatar, Spin, Image } from 'antd'; -import { StarFilled, ZoomInOutlined, StarOutlined, SearchOutlined } from '@ant-design/icons'; -import { ChatList, ChatItem, MessageBox } from 'react-chat-elements'; +import { Divider, Button, Input, Layout, Select, DatePicker, Form, List, Spin } from 'antd'; +import { ChatItem, MessageBox } from 'react-chat-elements'; import { fetchConversationsList, fetchMessages, MESSAGE_PAGE_SIZE } from '@/actions/ConversationActions'; import { isEmpty } from '@/utils/utils'; import useFormStore from '@/stores/FormStore'; import { useShallow } from 'zustand/react/shallow'; import { fetchSalesAgent } from '@/actions/CommonActions'; -// import SearchInput from '@/components/SearchInput2'; import SearchInput from '@/components/SearchInput'; const { Sider, Content, Header, Footer } = Layout;