Results 17 comments of Raúl Piaggio

+1 for this. We really like Accord but this feature has become a necessity for us. BTW, thank you for the great library!

We seem to be hitting this issue particularly hard in Scala.js (dev environment), with a performance degradation by a whole order of magnitude. For example, an iteration over ~100 IO...

@armanbilge Thank you for the links. > Which browser are you using? Chrome Version 96.0.4664.93 (Official Build) (x86_64) > I'll take a look there. Thank you!

> @rpiaggio one idea, to check that `CATS_EFFECT_TRACING_MODE` is working—can you raise an exception from inside CE and report the stacktrace? If it's enhanced then that means tracing is still...

@yurique I had the same problem and solved it by adding to `build.sbt` the following: Within your `server` project: ```scala scalaJSDev := scalaJSTask(scalaJSDev, packageJSDependencies).value, scalaJSProd := scalaJSTask(scalaJSProd, packageMinifiedJSDependencies).value, ``` And...

Hi David! After reading your comments, we'll certainly reconsider whether to use contexts. We were just beginning to experiment with them. I agree 100% that it's a limitation that only...

Hi there! I've been trying to solve this issue too. Just for reference: we need to create a component like this one, which has a `getValue` method that `ag-grid` needs...

Thank you @krzemin. Upon further thought, the patcher could be abstracted away for reusability (or reusability of the code that applies it): ``` val patcher = PatcherFor[User](_.email, _.phone, _.address) user.patchFrom(patcher)(anotherUser)...

Although React 18 support is not complete yet, we have a large application with only functional components which we were able to upgrade with the changes so far. Let's cut...