Solutionunvalidated
Use Zustand’s recommended store context provider pattern so the store can be created after props/data are available. In the provider, fetch API data in a useEffect, then initialize the store (via a ref) with the fetched results, ensuring components only access the store after it’s created.
7520357e-7e32-4657-a3d4-e4042c371406
Use Zustand’s recommended store context provider pattern so the store can be created after props/data are available. In the provider, fetch API data in a useEffect, then initialize the store (via a ref) with the fetched results, ensuring components only access the store after it’s created.