CYS: avoid flickering image loading screen (#48460)
* CYS: avoid flickering image loading screen * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
c76438906b
commit
924fc1687b
|
@ -138,8 +138,8 @@ export const ApiCallLoader = () => {
|
|||
}, 0 );
|
||||
} }
|
||||
>
|
||||
{ augmentedSteps.map( ( step, index ) => (
|
||||
<Loader.Layout key={ index }>
|
||||
{ augmentedSteps.map( ( step ) => (
|
||||
<Loader.Layout key={ step.title }>
|
||||
<Loader.Illustration>
|
||||
{ step.image }
|
||||
</Loader.Illustration>
|
||||
|
|
|
@ -87,8 +87,8 @@ export const ApiCallLoader = () => {
|
|||
}, 0 );
|
||||
} }
|
||||
>
|
||||
{ augmentedSteps.map( ( step, index ) => (
|
||||
<Loader.Layout key={ index }>
|
||||
{ augmentedSteps.map( ( step ) => (
|
||||
<Loader.Layout key={ step.title }>
|
||||
<Loader.Illustration>
|
||||
{ step.image }
|
||||
</Loader.Illustration>
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: tweak
|
||||
Comment: CYS: avoid flickering image loading screen.
|
||||
|
Loading…
Reference in New Issue