Skip to content

Commit ca9e3c4

Browse files
docs: add missing </Show> closing tag to Solid docs (#8068)
* add missing </Show> closing tag * ci: apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 763abd1 commit ca9e3c4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/framework/solid/reference/createQuery.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ function App() {
8181
},
8282
}))
8383

84-
8584
return (
8685
<div>
8786
<Show when={todos.isError}>
@@ -94,11 +93,10 @@ function App() {
9493
<div>
9594
<div>Todos:</div>
9695
<ul>
97-
<For each={todos.data}>
98-
{(todo) => <li>{todo.title}</li>}
99-
</For>
96+
<For each={todos.data}>{(todo) => <li>{todo.title}</li>}</For>
10097
</ul>
10198
</div>
99+
</Show>
102100
</div>
103101
)
104102
}

0 commit comments

Comments
 (0)