run -> thenRun
Lint / lint (push) Successful in 47s

This commit is contained in:
Julien Valverdé
2026-07-30 15:19:29 +02:00
parent 66b7a08ef7
commit f8ac04101a
10 changed files with 22 additions and 22 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ const RegisterRouteComponent = Component.make("RegisterRouteView")(function*() {
initialEncodedValue: { email: "", password: "" },
f: ([value]) => Effect.log(`Registered ${value.email}`),
}).pipe(
MutationForm.run,
MutationForm.thenRun,
)
const emailField = Form.focusObjectOn(form, "email")
+1 -1
View File
@@ -73,7 +73,7 @@ const UserProfileEditorView = Component.make("UserProfileEditorView")(function*(
password: "",
},
}).pipe(
LensForm.run,
LensForm.thenRun,
)
const emailField = Form.focusObjectOn(form, "email")
+1 -1
View File
@@ -46,7 +46,7 @@ const QueryRouteComponent = Component.make("QueryRouteView")(function*() {
),
staleTime: "10 seconds",
}).pipe(
Query.run,
Query.thenRun,
)
const mutation = yield* Mutation.make({