Vítor

Results 9 comments of Vítor

It would also be interesting to disable the queue completely. In my case I would prefer that a notification sent while the limit is full got lost.

That is exactly how I do it, but I eventually run into a situation where the job stops completely because `isRunning` never goes false, even though it is set to...

> You're correct, this is an ARM only issue and I've been having it for a while now. It does not compile on neither mac M1 nor M2.

I managed to make it work on my Macbook M2. There are two problems: 1 - node-gd requires an older version of Python, so you need to install Python 2.7.18...

This would also be useful to pass a `name` prop to allow extensions like 1Password autofill the input when it appears.

@prateek3255 the link to the migration guide on the release tag (https://github.com/devfolioco/react-otp-input/releases/tag/v3.0.0) is broken. Where can we find the migration guide to v3? Turns out the migration instructions are on...

I found this blogpost that suggests a workaround: https://medium.com/@kiranv07/how-to-prefetch-javascript-bundle-in-a-vite-js-react-app-d38de7fe34fc But for what I can tell it will just load the splitted bundles in parallel, so the benefits of prefetching are...

> I found the solution. You must set the environment variable > > CPLUS_INCLUDE_PATH=/opt/homebrew/include LD_LIBRARY_PATH=/opt/homebrew/lib LIBRARY_PATH=/opt/homebrew/lib > > Reference: [Automattic/node-canvas#1733](https://github.com/Automattic/node-canvas/issues/1733) I ended up forking the project with a fix so...

> is getInputRef prop not working for you? https://s-yadav.github.io/react-number-format/docs/props#getinputref-elm--void `getInputRef` gives a ref for the actual `` element. I'd like to have a ref to NumericFormat component so I can...