Streaming and UI flicker
Unanswered
Blue orchard bee posted this in #help-forum
Blue orchard beeOP
Hi, quick question: how should I handle a situation where I'm using streaming but the data loads so fast that there's a flicker between the fallback and the final content? For example, the Suspense fallback only shows for about 5 ms because the data arrives almost immediately.
4 Replies
hmm.. remove the loading ui? at that point there is no reason to use loading ui anymore. you've achieved peak performance haha
Pacific sand lance
you can throttle loader
something like display fallback for atleast 300ms
@Pacific sand lance something like display fallback for atleast 300ms
but thats only possible in client side right? how would you do that with Suspense?