Mikhail Gorkovenko
Results
2
issues of
Mikhail Gorkovenko
@pivanov @RobPruzan hi guys, check this tiny PR pls. I've fixed the bug with handlers passed in the `useScan/scan` are never called. Issue #333
Explanation what I mean: ```ts useScan({ onRender: (...args) => console.log('onRender', args), // it won't call ever }) ``` Handlers are always ignored during scan creation. It happens because `ReactScanInternals.options.value` doesn't...