Fix?
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-09-23 06:02:01 +02:00
parent 7545b4bb30
commit 46ef35040a
2 changed files with 15 additions and 14 deletions

View File

@@ -20,8 +20,8 @@ class RegisterForm extends Effect.Service<RegisterForm>()("RegisterForm", {
class RegisterPage extends Component.makeUntraced(function* RegisterPage() {
const form = yield* RegisterForm
const emailInput = yield* Form.useInput(form, { path: ["email"] })
const passwordInput = yield* Form.useInput(form, { path: ["password"] })
const emailInput = yield* Form.useInput(form, ["email"])
const passwordInput = yield* Form.useInput(form, ["password"])
yield* useFork(() => Stream.runForEach(form.valueRef.changes, Console.log), [])