Commit e61de12639 for woocommerce
commit e61de12639e19035da52fd6c664648f4593b8a48
Author: Rostislav Wolný <1082140+costasovo@users.noreply.github.com>
Date: Fri Jan 16 10:33:55 2026 +0100
Unify loading indicator in the email editor with the site editor (#62729)
Unify loading indicator in email editor with site editor
diff --git a/packages/js/email-editor/changelog/wooprd-1630-unify-loading-indicato b/packages/js/email-editor/changelog/wooprd-1630-unify-loading-indicato
new file mode 100644
index 0000000000..07fa04a32d
--- /dev/null
+++ b/packages/js/email-editor/changelog/wooprd-1630-unify-loading-indicato
@@ -0,0 +1,4 @@
+Significance: patch
+Type: enhancement
+
+Unify loading indicator with the site editor
diff --git a/packages/js/email-editor/src/components/block-editor/editor.tsx b/packages/js/email-editor/src/components/block-editor/editor.tsx
index 31d20c11b8..4bd889b1c8 100644
--- a/packages/js/email-editor/src/components/block-editor/editor.tsx
+++ b/packages/js/email-editor/src/components/block-editor/editor.tsx
@@ -3,7 +3,7 @@
*/
import { useSelect, useDispatch } from '@wordpress/data';
import { useMemo, useEffect } from '@wordpress/element';
-import { SlotFillProvider, Spinner } from '@wordpress/components';
+import { SlotFillProvider, ProgressBar } from '@wordpress/components';
import { store as coreStore, Post } from '@wordpress/core-data';
import { CommandMenu, store as commandsStore } from '@wordpress/commands';
import { PluginArea } from '@wordpress/plugins';
@@ -128,7 +128,7 @@ export function InnerEditor( {
if ( ! canRenderEditor ) {
return (
<div className="spinner-container">
- <Spinner style={ { width: '80px', height: '80px' } } />
+ <ProgressBar />
</div>
);
}