Mordechai Meisels

Results 46 comments of Mordechai Meisels

Check out my project [update4j](https://github.com/update4j/update4j) for a fully modular updater.

I observe a very similar behavior albeit not with embedded objects. When loading a collection with `useQuery`, all elements are undefined unless I dereference them individually: ```js const cats =...

@takameyer Until this is fixed, is there a react-friendly workaround? EDIT: So this is my workaround which does follow new inserts: ```js // replace this const cat = useObject('Cat', 12)...

Can you show the code related to rendering the line on the touch position?

For one, you can utilize the voronoi onActivate callback instead of calculating the closest point yourself. Then, try making the active line the labelComponent of the voronoi container instead of...

Here's the thing, by rendering the line as a child you force a render, while the label component won't render the entire chart again. You need to utilize other react...

For your latter issue with reading name from undefined, try changing the conditional render to: ```jsx {active?.point?.eventKey != null && ( )} ``` Victory children must either be components or...

FWIW I just figured out a workaround: Return an object for the corners and pass the functions there. ```jsx cornerRadius={{ top: d => d.barWidth / 2, bottom: d => d.barWidth...

The solution to this is to add initial safe area metrics to 0: ```jsx return ``` And wrap your tab navigator with SafeAreaView: ```jsx return {myAwesomeTabs} ```