Skip to content

Commit 6d2a5da

Browse files
ci: apply automated fixes
1 parent 5302896 commit 6d2a5da

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

examples/solid/start-bun/src/routes/demo.start.api-request.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ function Home() {
2929
<h1 class="text-2xl mb-4">Start API Request Demo - Names List</h1>
3030
<ul class="mb-4 space-y-2">
3131
{names().map((name) => (
32-
<li
33-
class="bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md"
34-
>
32+
<li class="bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md">
3533
<span class="text-lg text-white">{name}</span>
3634
</li>
3735
))}

examples/solid/start-bun/src/routes/demo.start.server-funcs.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,7 @@ function Home() {
6262
<h1 class="text-2xl mb-4">Start Server Functions - Todo Example</h1>
6363
<ul class="mb-4 space-y-2">
6464
{todos().map((t: any) => (
65-
<li
66-
class="bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md"
67-
>
65+
<li class="bg-white/10 border border-white/20 rounded-lg p-3 backdrop-blur-sm shadow-md">
6866
<span class="text-lg text-white">{t.name}</span>
6967
</li>
7068
))}

0 commit comments

Comments
 (0)