diff --git a/modules/cohesion_sync/src/Services/SyncImport.php b/modules/cohesion_sync/src/Services/SyncImport.php
index 7f9ee5f3e2..0bb539c0b4 100644
--- a/modules/cohesion_sync/src/Services/SyncImport.php
+++ b/modules/cohesion_sync/src/Services/SyncImport.php
@@ -91,6 +91,10 @@ class SyncImport implements SyncImportInterface {
       if (str_starts_with($name, self::CONFIG_PREFIX)) {
         $uuid = $storageComparer->getSourceStorage()->read($name)['uuid'];
         $type = explode('.', $name)[1];
+        // Skip package entities.
+        if ($type === self::COHESION_PACKAGE_TYPE) {
+          continue;
+        }
         $rebuild_list[$uuid] = $type;
 
         foreach (self::ENTITY_WITH_DEPENDENCY as $entity_type) {
diff --git a/modules/cohesion_sync/src/Services/SyncImportInterface.php b/modules/cohesion_sync/src/Services/SyncImportInterface.php
index 0e75a1f694..d534c9633b 100644
--- a/modules/cohesion_sync/src/Services/SyncImportInterface.php
+++ b/modules/cohesion_sync/src/Services/SyncImportInterface.php
@@ -12,6 +12,7 @@ use Drupal\Core\Config\StorageComparerInterface;
 interface SyncImportInterface {
 
   const CONFIG_PREFIX = 'cohesion_';
+  const COHESION_PACKAGE_TYPE = 'cohesion_sync_package';
 
   const COMPLETE_REBUILD = [
     'base_unit_settings' => 'cohesion_website_settings.cohesion_website_settings.base_unit_settings',
