Rename withRuntime to withContext
Lint / lint (push) Successful in 39s

This commit is contained in:
Julien Valverdé
2026-07-19 18:44:01 +02:00
parent f22743eefe
commit 1dc8368750
10 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ const AsyncRouteComponent = Component.make("AsyncRouteView")(function*() {
</Container>
)
}).pipe(
Component.withRuntime(runtime.context),
Component.withContext(runtime.context),
)
export const Route = createFileRoute("/async")({
+1 -1
View File
@@ -55,7 +55,7 @@ const RegisterRouteComponent = Component.make("RegisterRouteView")(function*() {
</Container>
)
}).pipe(
Component.withRuntime(runtime.context),
Component.withContext(runtime.context),
)
export const Route = createFileRoute("/form")({
+1 -1
View File
@@ -48,7 +48,7 @@ const TodoRouteComponent = Component.make("TodoRouteView")(function*() {
</Container>
)
}).pipe(
Component.withRuntime(runtime.context),
Component.withContext(runtime.context),
)
export const Route = createFileRoute("/")({
+1 -1
View File
@@ -77,7 +77,7 @@ const QueryRouteComponent = Component.make("QueryRouteView")(function*() {
</Container>
)
}).pipe(
Component.withRuntime(runtime.context),
Component.withContext(runtime.context),
)
export const Route = createFileRoute("/query")({
+1 -1
View File
@@ -37,7 +37,7 @@ const ResultRouteComponent = Component.make("ResultRouteView")(function*() {
</Container>
)
}).pipe(
Component.withRuntime(runtime.context),
Component.withContext(runtime.context),
)
export const Route = createFileRoute("/result")({