Skip to content

Commit

Permalink
remove unnecessary wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
solaoi committed Sep 16, 2024
1 parent 2eae78d commit b92a514
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/molecules/SpeechHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ const SpeechHistory = (props: SpeechHistoryProps): JSX.Element => {
<div className="card-body">
<div className="chat chat-start">
<div className="flex chat-bubble bg-white text-slate-500">
<p>
<MyMarkdown content={c.content} title={`${selectedNote?.note_title.trim()}_action-start_${i}`} />
</p>
<MyMarkdown content={c.content} title={`${selectedNote?.note_title.trim()}_action-start_${i}`} />
</div>
</div>
<div className="chat chat-end">
Expand Down

0 comments on commit b92a514

Please sign in to comment.