Skip to content

Commit

Permalink
feat: fix code
Browse files Browse the repository at this point in the history
  • Loading branch information
comoser committed Sep 22, 2023
1 parent 498cea8 commit 3691ae3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/web-ui/components/document-snippets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export function DocumentSnippets({ source }: DocumentSnippetsProps) {
</DialogTitle>
</DialogHeader>
<>
{source.snippets.map((snippet, index) => {
return <Markdown key={index} content={snippet}></Markdown>;
})}
{source.snippets.map((snippet, index) => (
<Markdown key={index} content={snippet} />
))}
</>
</DialogContent>
</Dialog>
Expand Down

0 comments on commit 3691ae3

Please sign in to comment.