Results 24 comments of Eyal Yoli Abs

You just have to play with it and implement whatever fits your production app (not testing). I used the same code for another issue I had with drop-down menus (on...

same issue here on mac os sonoma 14 In my case it happens on network issues, destination is not available, or even when sending multipart form with old file path...

same here mac pro 13" i7 OS Sonoma v14 this might be related https://github.com/electron/electron/issues/4465 also turns out you need to [reset the timer](https://www.reddit.com/r/node/comments/fbh6ik/comment/fj9jpuo/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) using [these](https://www.electronjs.org/docs/latest/api/power-monitor) hooks I see it's used...

I would suggest adding under [app ready event](https://github.com/tom-james-watson/breaktimer-app/blob/84d62f3a28b76d06d14cb6daa1db642166d076a4/app/main/index.ts#L69C6-L69C6) this part: ```typescript ... import { BreakTime, tickInterval } from "../../types/breaks"; ... app.on('ready', () => { ... electron.powerMonitor.on('suspend', () => { clearInterval(tickInterval);...

I'm having wired behavior same as @parkerqueen with flex props on a card. It doesn't respect all flex related props!

What you suggested dosen't work on android. At least flex direction had no effect. I found out that when you set a fixed height & width for the root body...

@artyorsh sorry for not beign specific. Using your code and chaning it to: ```javascript ... ``` flex on the card takes effect, but not on the body. This works as...

This is the behaviour of card (top) vs view (bottom) with the same prop styling: ![image](https://user-images.githubusercontent.com/4116908/97987218-959fed80-1de3-11eb-89e4-0c2d0cf27e19.png) I tried to make the view in the same structure as the card. The...

@artyorsh should I reopen this as a bug? I noticed that when flex in footer seems to work fine.