Skip to content

Commit 54139a0

Browse files
ci: apply automated fixes
1 parent 40b494a commit 54139a0

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

examples/solid/start-basic-cloudflare/src/routes/posts_.$postId.deep.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@ function PostDeepComponent() {
1616

1717
return (
1818
<div class="p-2 space-y-2">
19-
<Link
20-
to="/posts"
21-
class="block py-1 text-blue-800 hover:text-blue-600"
22-
>
19+
<Link to="/posts" class="block py-1 text-blue-800 hover:text-blue-600">
2320
← All Posts
2421
</Link>
2522
<h4 class="text-xl font-bold underline">{post.title}</h4>

examples/solid/start-basic-cloudflare/src/routes/users.index.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ function UsersIndexComponent() {
88
return (
99
<div>
1010
Select a user or{' '}
11-
<a
12-
href="/api/users"
13-
class="text-blue-800 hover:text-blue-600 underline"
14-
>
11+
<a href="/api/users" class="text-blue-800 hover:text-blue-600 underline">
1512
view as JSON
1613
</a>
1714
</div>

examples/solid/start-basic-cloudflare/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export default defineConfig({
1414
}),
1515
cloudflare({ viteEnvironment: { name: 'ssr' } }),
1616
tanstackStart(),
17-
viteSolid({ssr: true}),
17+
viteSolid({ ssr: true }),
1818
],
1919
})

0 commit comments

Comments
 (0)