Skip to content

Commit

Permalink
docs: add missing </Show> closing tag to Solid docs (#8068)
Browse files Browse the repository at this point in the history
* add missing </Show> closing tag

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
BStephenBB and autofix-ci[bot] committed Sep 20, 2024
1 parent 763abd1 commit ca9e3c4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/framework/solid/reference/createQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ function App() {
},
}))


return (
<div>
<Show when={todos.isError}>
Expand All @@ -94,11 +93,10 @@ function App() {
<div>
<div>Todos:</div>
<ul>
<For each={todos.data}>
{(todo) => <li>{todo.title}</li>}
</For>
<For each={todos.data}>{(todo) => <li>{todo.title}</li>}</For>
</ul>
</div>
</Show>
</div>
)
}
Expand Down

0 comments on commit ca9e3c4

Please sign in to comment.