Fix
Some checks failed
Lint / lint (push) Failing after 10s

This commit is contained in:
Julien Valverdé
2025-01-15 23:54:38 +01:00
parent ca961e9122
commit 0e7f5d93bb

View File

@@ -81,7 +81,7 @@ export class Reffuse<R> {
runSync,
)
return () => runSync(Scope.close(scope, Exit.void))
return () => { runSync(Scope.close(scope, Exit.void)) }
}, [
...options?.doNotReExecuteOnRuntimeOrContextChange ? [] : [runSync],
...(deps ?? []),
@@ -101,7 +101,7 @@ export class Reffuse<R> {
runSync,
)
return () => runSync(Scope.close(scope, Exit.void))
return () => { runSync(Scope.close(scope, Exit.void)) }
}, [
...options?.doNotReExecuteOnRuntimeOrContextChange ? [] : [runSync],
...(deps ?? []),