ci: fixes

This commit is contained in:
Dax Raad
2025-10-10 18:17:10 -04:00
parent f053862018
commit 07645e0705
5 changed files with 57 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ export namespace Context {
return result
},
provide<R>(value: T, fn: () => R) {
return storage.run<R>(value, fn)
return storage.run(value, fn)
},
}
}