Skip to content

Commit

Permalink
Merge branch 'main' into refactor-with-mst-2
Browse files Browse the repository at this point in the history
  • Loading branch information
emcelroy authored Dec 10, 2024
2 parents d6feb50 + 2bca963 commit ee552d9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/chat-transcript.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ describe("test chat transcript component", () => {
expect(speaker).toHaveTextContent(chatTranscript.messages[index].speaker);

const content = within(message).getByTestId("chat-message-content");
expect(content).toHaveAttribute("aria-label", "message");
expect(content).toHaveTextContent(chatTranscript.messages[index].content);
});
});
Expand Down
1 change: 0 additions & 1 deletion src/components/chat-transcript.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export const ChatTranscriptComponent = observer(({chatTranscript}: IProps) => {
{message.speaker}
</h3>
<div
aria-label="message"
className={`chat-message-content ${messageContentClass}`}
data-testid="chat-message-content"
>
Expand Down

0 comments on commit ee552d9

Please sign in to comment.