diff --git a/extensions/shared/block-category.js b/extensions/shared/block-category.js
index abe0ec106026f..abd2cb19ee1a9 100644
--- a/extensions/shared/block-category.js
+++ b/extensions/shared/block-category.js
@@ -8,23 +8,29 @@ import { __ } from '@wordpress/i18n';
* Internal dependencies
*/
import JetpackLogo from '../shared/jetpack-logo';
+import { isAtomicSite, isSimpleSite } from '../shared/site-type-utils';
/**
* Return bool depending on registerBlockCollection compatibility.
*
* @todo When Jetpack's minimum is WP 5.4. Remove this function and update all block categories.
*
- * @return {boolean} Value to indicate function support.
+ * @returns {boolean} Value to indicate function support.
*/
export const supportsCollections = () => {
return typeof registerBlockCollection === 'function';
};
+const isWpcom = isSimpleSite() || isAtomicSite();
+
if ( supportsCollections() ) {
- registerBlockCollection( 'jetpack', {
- title: 'Jetpack',
- icon: ,
- } );
+ // We do not want the Jetpack collection on WordPress.com (Simple or Atomic).
+ if ( ! isWpcom ) {
+ registerBlockCollection( 'jetpack', {
+ title: 'Jetpack',
+ icon: ,
+ } );
+ }
} else {
// This can be removed once Jetpack's minimum is Core 5.4.
setCategories( [