We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92178b3 commit a9b3ae6Copy full SHA for a9b3ae6
src/components/design-library-list/index.js
@@ -131,8 +131,8 @@ const DesignLibraryItem = memo( props => {
131
if ( typeof requestIdleCallback !== 'undefined' ) {
132
id = requestIdleCallback( () => ! shouldRender ? setShouldRender( true ) : {}, { timeout: ( designIndex + 1 ) * 500 } )
133
} else {
134
- // fallback
135
- id = setTimeout( () => setShouldRender( true ), designIndex * 20 )
+ // fallback, always render immediately the first design
+ id = setTimeout( () => setShouldRender( true ), designIndex * 500 )
136
}
137
138
return () => {
0 commit comments