Use proper client-side caching for repeated fetches
You guys have a lot of areas where you're fetching remote data and displaying loading skeletons while the requests resolve. Every time I go to add a font to a library, it has to fetch my libraries. That data should already be available to the client since it has been fetched tens of times–just show what you have immediately and invisibly check for any changes in the background. The wait is annoying/unnecessary.
1
vote