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

This commit is contained in:
Julien Valverdé
2025-08-27 05:41:31 +02:00
parent 64114f0208
commit 8ba0189472

View File

@@ -23,7 +23,7 @@ class LoginFormComponent extends Component.makeUntraced(function* LoginFormCompo
const emailInput = yield* form.useInput(["email"])
const passwordInput = yield* form.useInput(["password"])
yield* useFork(() => Stream.runForEach(form.latestValueSubscribable.changes, Console.log))
yield* useFork(() => Stream.runForEach(form.latestValueSubscribable.changes, Console.log), [])
return (
<Container>