0.1.0 #1

Merged
Thilawyn merged 87 commits from next into master 2025-01-18 00:54:42 +01:00
Showing only changes of commit 1720266761 - Show all commits

View File

@@ -69,7 +69,7 @@ export class Reffuse<R> {
return React.useEffect(() => { return React.useEffect(() => {
const fiber = runFork(Effect.scoped(self), options) const fiber = runFork(Effect.scoped(self), options)
return () => { runFork(Fiber.interrupt(fiber)) } return () => { runFork(Fiber.interrupt(fiber)) }
}, [runFork, ...deps ?? []]) }, [runFork, ...(deps ?? [])])
} }