Hi @siddharth, This is not a single page application. I just found some of the reasons for slowing down, One of which is requesting user details during every page load since I am getting the user from external db and I want to store some info related to user like 4 fields in to a session object and use the data any time I want, instead of doing the api call everytime. I can store the user object using ‘Set State’ but I’m not able to send the user object as a whole across the pages. Is there a way to do so.
Another one is - It is triggering requests that are not wanted during my page load. For eg. I have a search bar in one of my page categories section that requests for items matching the input. This should be triggered only when the Input search bar’s value changes. But these requests are triggered every time the page is loaded. Can I know what to do to prevent triggering irrelevant queries?