Some of the pages in the client app are experiencing extraordinarily long load times as the amount of data available has gone up. This is mostly because in some cases (The registrations page in the admin panel is the worst example) the browser has to render hundreds (possibly thousands) of components at once.
Need to implement something like https://www.npmjs.com/package/react-infinite-scroller to control the amount of components being loaded at once, since these longer lists are most likely just utilized for their search function anyways.
Some of the pages in the client app are experiencing extraordinarily long load times as the amount of data available has gone up. This is mostly because in some cases (The registrations page in the admin panel is the worst example) the browser has to render hundreds (possibly thousands) of components at once.
Need to implement something like https://www.npmjs.com/package/react-infinite-scroller to control the amount of components being loaded at once, since these longer lists are most likely just utilized for their search function anyways.