mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Eliminate artificial delay in swaps loading screen after request loading is complete (#10496)
This commit is contained in:
parent
23013b1ee9
commit
75a81c605a
@ -112,13 +112,9 @@ export default function LoadingSwapsQuotes({
|
||||
// This is to give the user a sense of progress. The callback passed to `setTimeout` updates the quoteCount and therefore causes
|
||||
// a new logo to be shown, the fox to look at that logo, the logo bar and aggregator name to update.
|
||||
|
||||
// If loading is complete and all logos + aggregator names have been shown, give the user 1.2 seconds to read the
|
||||
// "Finalizing message" and prepare for the screen change
|
||||
if (quoteCount === numberOfQuotes && loadingComplete) {
|
||||
timeoutLength = 1200;
|
||||
} else if (loadingComplete) {
|
||||
// If loading is complete, but the quoteCount is not, we quickly display the remaining logos/names/fox looks. 0.5s each
|
||||
timeoutLength = 500;
|
||||
if (loadingComplete) {
|
||||
// If loading is complete, but the quoteCount is not, we quickly display the remaining logos/names/fox looks. 0.2s each
|
||||
timeoutLength = 200;
|
||||
} else {
|
||||
// If loading is not complete, we display remaining logos/names/fox looks at random intervals between 0.5s and 2s, to simulate the
|
||||
// sort of loading a user would experience in most async scenarios
|
||||
|
Loading…
Reference in New Issue
Block a user