Casey Ydenberg
Casey Ydenberg
If `head` is specified as JSON, rather than JSX, will it be possible to create arbitrary tags? I gather from your example that `title: string` will create a `` and...
If I'm understanding @BrunoBernardino 's point, the limitation he's experiencing is around code _reusability_. In other words, the ability to use a component as an island or not-an-island, depending on...
Well, if it helps, components that are _children_ of islands _can_ receive functions as props. So, your `ComplexOrBigComponent` could live in `components/`, receive onClick when used as a descendent of...
Being able to lint improper camel casing in Preact-SVG components would be a _big_ help IMO. That's bitten me so many times.
State updates are batched, so you can't count on multiple updates in a very close succession rendering on the "intermediate" state, even if you update them on different ticks of...
Try deleting Drawer.Content. I then get the same result. Pretty sure it's just a race condition with the re-rendering engine.
I'm not able to reproduce either of these issues (redirect from a link, or from a form submission). Fresh 1.6.8, tried both [Firefox](https://whatismybrowser.com/w/3JJ73XD) and [Chrome](https://www.whatsmybrowser.org/b/QYIFN). I checked Postman and it...
No problems that I'm aware of, but it would be great if I knew how carefully to check. If this bump was due to a major version bump in JS-SDK...
cloneElement makes me feel weird and uncomfortable and given React considers it a "legacy API" I'm not sure how long Preact will continue to support it. Let alone at the...
I have a similar issue with `useStoryblokState` which is causing my previews to crash. This `useEffect` (https://github.com/storyblok/storyblok-react/blob/60cd8de274b0031bb9ae59e131008a5851e76b7f/lib/common/client.ts#L22) is called conditionally. I would really suggest using React's eslint plugin to enforce...