This repository was archived by the owner on Jan 26, 2021. It is now read-only.

Description
I have a React component with a number of tabs, each dependent on different Parse queries. I have made observe() dependent on the currently selected tab, which is stored in the component's state. When observe is called, it is done with the state before the setState() call that sets off the process. However, render is called with the state after setState(), which misaligns the the component's data with the data needed by the tab.
I believe this is because React does not update state until just before rendering (facebook/react#629).
Will this be fixed with #1?