Paul

Results 69 comments of Paul

@TotomInc You set a ref variable like ``` const isMountedRef = useRef(false) ``` and then you have a useEffect only at mount ``` useEffect(() => { isMountedRef.current = true },...

I've been at this issue for a while now, attacking it from several directions. Gave up, but then tried to do it with React-DND which has it's own issues and...

Thanks for that @ABISprotocol, very interesting. What do you suggest instead to have similar capability so that the masses can spend using bitcoin?

After a bit of playing around. I can get around this for development purposes. ``` "main": "./src/index.ts", "exports": { ".": { "types": "./dist/index.d.cts", "import": "./src/index.ts", "require": "./src/index.ts" } }, ```...

No, you'll have your main application (PHP/Ruby/whatever) doing that.

Edit: it's part of the "use client" needing to be present. HMR works fine when this is in place. Sorry about the noise. But I'm interested to investigate now. I've...

I forked the webpack plugin specifically for nextjs: https://pastebin.com/raw/Pdf1GgqL The key takeaway is that the webpack plugin runs in cycles where only certain files are available and also for the...

I've now managed to circumvent the issues I have been having. I'm no longer needing watch in my workflow and only relying on stdout. It's still worth resolving this. As...

Below are the following issues: I am not understanding why I'm getting them as they are getting correct types. I have other tables, which have no problems at all and...

I would have never guessed to look at CreateOne for the order. I would have taken it as the order of how the model is formed. I know what to...