Skip to content

Commit

Permalink
[fix] Format Chat.tsx (microsoft#833)
Browse files Browse the repository at this point in the history
Co-authored-by: Ian Seabock (Centific Technologies Inc) <[email protected]>
  • Loading branch information
iseabock and Ian Seabock (Centific Technologies Inc) authored May 3, 2024
1 parent ffa7afe commit 7fef128
Show file tree
Hide file tree
Showing 6 changed files with 419 additions and 364 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/ChatHistory/ChatHistoryList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { AppStateContext } from '../../state/AppProvider'

import { ChatHistoryListItemGroups } from './ChatHistoryListItem'

interface ChatHistoryListProps { }
interface ChatHistoryListProps {}

export interface GroupedChatHistory {
month: string
Expand Down Expand Up @@ -63,7 +63,7 @@ const ChatHistoryList: React.FC<ChatHistoryListProps> = () => {
const appStateContext = useContext(AppStateContext)
const chatHistory = appStateContext?.state.chatHistory

React.useEffect(() => { }, [appStateContext?.state.chatHistory])
React.useEffect(() => {}, [appStateContext?.state.chatHistory])

let groupedChatHistory
if (chatHistory && chatHistory.length > 0) {
Expand Down
Loading

0 comments on commit 7fef128

Please sign in to comment.