Michel Weststrate
Michel Weststrate
@nikoant / @passy any chance you could look into this one? I don't have a windows machine at my disposal atm.
@Xmaxer please discuss separate issues in new issues, including repro steps, preferably in combination with the ReactNativeFlipperExample
I have to admit I pinned several repositories I manage to old prettier versions, for exactly the same reason as @mjackson, complex expressions became really hard to read when this...
Agreed it would be slightly more elegant, but for simplicity sake and not having too many ways to achieve the same thing, I propose to keep it as is. A...
Is it fixed when enabling useStrictShallowCopy(true)? On Sat, 6 Jan 2024, 09:26 Dmitriy Verenich, ***@***.***> wrote: > 🐛 Bug Report > > When you use produce on an object which...
Likely same issue as #1096. Will investigate when I can carve out a sliver of time. If someone is willing to submit a PR with unit test(s), that will already...
#1105 should fix the handling of Proxy properties. When drafted, they are now finalized correctly. Let me know if it isn't solved by `[email protected]`
Can you post a code snippet instead and examples with what you are trying to achieve and get? Images aren't editable. But I imagine it'd be something like this `draft[canvas.format.platformType][canvas.format.platform].groups[group.name]...
Yes in the case of empty objects you'll have to initialize them first when needed On Fri, 9 Dec 2022, 10:28 Yurii Yasinitskyi, ***@***.***> wrote: > @mweststrate it will throw...
``` const x = a.b.c; if (!x.y) { x.y = {} } x.y[z] = w ``` or: `(a.b.c.y ??= {})[z] = w`, but the readability improvement could be contested