Skip to content

Commit

Permalink
make summary html valid
Browse files Browse the repository at this point in the history
  • Loading branch information
nickoferrall committed Feb 4, 2025
1 parent afee5c6 commit 8f36b23
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ const WholeMeetingSummary = () => {
borderBottom: `1px solid ${PALETTE.SLATE_400}`
}}
>
<tr>
<td style={explainerStyle}>
{'Hold tight! Our AI 🤖 is generating your meeting summary'}
<Ellipsis />
</td>
</tr>
<div style={explainerStyle}>
{'Hold tight! Our AI 🤖 is generating your meeting summary'}
<Ellipsis />
</div>
</td>
</tr>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,22 +81,13 @@ const WholeMeetingSummaryResult = ({meetingRef}: Props) => {
<>
<tr>
<td align='center' style={{paddingTop: 20}}>
<tr>
<td style={explainerStyle}>{explainerText}</td>
</tr>
<tr>
<td align='center' style={topicTitleStyle}>
{'🤖 Meeting Summary'}
</td>
</tr>
<tr>
<td
align='center'
style={textStyle}
className='link-style'
dangerouslySetInnerHTML={{__html: sanitizedSummary}}
/>
</tr>
<div style={explainerStyle}>{explainerText}</div>
<div style={topicTitleStyle}>{'🤖 Meeting Summary'}</div>
<div
style={textStyle}
className='link-style'
dangerouslySetInnerHTML={{__html: sanitizedSummary}}
/>
</td>
</tr>
<EmailBorderBottom />
Expand Down

0 comments on commit 8f36b23

Please sign in to comment.