Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Laux committed Oct 23, 2023
1 parent 91609b6 commit 09df23f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/components/message/MessageMarkdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function renderElement(elm: ParsedElement, key?: number): JSX.Element {
return <BotCommandSuggestion key={key} suggestion={elm.c} />

case 'Linebreak':
return <span key={key}>{"\n"}</span>
return <span key={key}>{'\n'}</span>

case 'Text':
return <span key={key}>{elm.c}</span>
Expand Down

0 comments on commit 09df23f

Please sign in to comment.