Martin Mochetti

Results 18 comments of Martin Mochetti

**Update:** Seems that we have an `inserted` event that gets triggered for the `at-textarea` component in the latest version. Will use that version instead of `2.x`.

Not working for me either. To reproduce: ```rb describe "google" do it "test" do stub_request(:get, "https://google.com").with(headers: hash_including({})).to_return(body: "") Faraday.new.get("https://google.com") do |req| req.headers = { "Not-Included-In-Stub": "true" } end expect(WebMock).to have_requested(:get,...

What I ended up doing is this: https://github.com/moraki-finance/docuseal/blob/main/spec/spec_helper.rb#L29 Not ideal, but works.

I need this fix as well! The `transform` callback is being overridden by the default `(data) => data` after doing something basic like `form.setData`. Repro steps: ```js const myCallback =...

I added a package containing this fix in the npm registry if anyone is interested: https://www.npmjs.com/package/@moraki/inertia-react

Found an issue trying to use pnpm in CI that caused the mixup of yarn + pnpm to fail. It would ideal to have the possibility to set this env...

> Found an issue trying to use pnpm in CI that caused the mixup of yarn + pnpm to fail. It would ideal to have the possibility to set this...

Related: https://github.com/tailwindlabs/headlessui/pull/3772