Maicon Carraro
Maicon Carraro
I'll use this for a new project from my job, I really enjoy your boilerplate. We'll have a big product, a lot of containers and components, and I liked your...
@wellyshen there is a way to support you? like [Buy me a coffee](https://www.buymeacoffee.com/explore/developer)
@wellyshen absolutely! If you visit let me know 👍 Another feedback, `yarn build` has the command `rm -rf` that doesn't work on windows (at least on cmd, and powershell is...
@wellyshen Sure, I can check if it works
It's working @wellyshen before:  after:  thank you!
> Hi @maiconcarraro, > > Thanks a lot for your contribution! 😄 > > I don't mind removing it if that's the way forward, but why does it work for...
> @maiconcarraro You are looking at the wrong package.json: https://github.com/react-dnd/react-dnd/blob/main/packages/react-dnd/package.json 😉 My bad =/ not sure how to help right now, I can take a look later, was using dnd-kit...
@LouisBrunner https://github.com/LouisBrunner/dnd-multi-backend/pull/91 if you can check
@sellum The problem is related to "Strict mode" on facebook login, since we defined "redirectUriTemplate" its make requests using http (without httpS) and facebook blocks. `server.use-forward-headers=true` did the trick for...
I had the same issue that prevented up/down arrow navigation for Textarea inside of the Modal, this workaround worked for me: ```react { if (e.key === "Escape") { onClose(); }...