Skip to content

Commit

Permalink
Fix indentation and invalid DOM nesting
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-robert committed Apr 8, 2024
1 parent 18b5f1e commit 905678c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/project/project-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -908,11 +908,11 @@ export class ProjectActions {
values={{
li: (chunks: ReactNode) => (
<ListItem>
<Text>{chunks}</Text>
<Text as="span">{chunks}</Text>
</ListItem>
),
ul: (chunks: ReactNode) => (
<UnorderedList>{chunks}</UnorderedList>
<UnorderedList pl={2}>{chunks}</UnorderedList>
),
}}
/>
Expand Down

0 comments on commit 905678c

Please sign in to comment.