Skip to content

Commit

Permalink
commit to test github format workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dehoward committed Jul 27, 2023
1 parent 842b219 commit b75f6f6
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions webapp/src/components/chat/ChatWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
TabList,
TabValue,
tokens,
Tooltip
Tooltip,
} from '@fluentui/react-components';
import { Edit24Filled, EditRegular } from '@fluentui/react-icons';
import React, { useEffect, useState } from 'react';
Expand Down Expand Up @@ -98,6 +98,8 @@ export const ChatWindow: React.FC = () => {
const { instance, inProgress } = useMsal();
const chatService = new ChatService(process.env.REACT_APP_BACKEND_URI as string);

console.log('fake change to test github workflow');

const { conversations, selectedId } = useAppSelector((state: RootState) => state.conversations);
const chatName = conversations[selectedId].title;

Expand Down Expand Up @@ -207,17 +209,22 @@ export const ChatWindow: React.FC = () => {
</TabList>
</div>
<div className={classes.controls}>
<div data-testid='chatParticipantsView'>
<div data-testid="chatParticipantsView">
<ParticipantsList participants={conversations[selectedId].users} />
</div>
<div> <ShareBotMenu chatId={selectedId} chatTitle={title} /></div>
<div>
{' '}
<ShareBotMenu chatId={selectedId} chatTitle={title} />
</div>
</div>
</div>
{selectedTab === 'chat' && <ChatRoom />}
{selectedTab === 'documents' && <ChatResourceList />}
{selectedTab !== 'chat' && <div className={classes.alerts}>
<Alerts />
</div>}
{selectedTab !== 'chat' && (
<div className={classes.alerts}>
<Alerts />
</div>
)}
</div>
);
};

0 comments on commit b75f6f6

Please sign in to comment.