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

This commit is contained in:
Julien Valverdé
2025-09-23 18:15:11 +02:00
parent 46ef35040a
commit ed1efb41cd
3 changed files with 8 additions and 6 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, ["email"])
const passwordInput = yield* Form.useInput(form, ["password"])
const emailInput = yield* Form.useInput(form, ["email"], { debounce: "200 millis" })
const passwordInput = yield* Form.useInput(form, ["password"], { debounce: "200 millis" })
yield* useFork(() => Stream.runForEach(form.valueRef.changes, Console.log), [])