diff --git a/composer.json b/composer.json
index aa0b9442d..8ad16850f 100644
--- a/composer.json
+++ b/composer.json
@@ -82,13 +82,15 @@
             "Tests\\": "tests/"
         }
     },
-    "repositories": [{
-        "type": "path",
-        "url": "packages/*/*",
-        "options": {
-            "symlink": true
+    "repositories": [
+        {
+            "type": "path",
+            "url": "packages/*/*",
+            "options": {
+                "symlink": true
+            }
         }
-    }],
+    ],
     "minimum-stability": "stable",
     "prefer-stable": true,
     "scripts": {
diff --git a/composer.lock b/composer.lock
index 32ecfaad9..ad1b9af0d 100644
--- a/composer.lock
+++ b/composer.lock
@@ -11548,5 +11548,5 @@
         "php": "^8.2"
     },
     "platform-dev": [],
-    "plugin-api-version": "2.3.0"
+    "plugin-api-version": "2.6.0"
 }
diff --git a/packages/Webkul/Automation/src/Helpers/Entity/Lead.php b/packages/Webkul/Automation/src/Helpers/Entity/Lead.php
index 3cbdfae89..bf10a7f30 100644
--- a/packages/Webkul/Automation/src/Helpers/Entity/Lead.php
+++ b/packages/Webkul/Automation/src/Helpers/Entity/Lead.php
@@ -54,18 +54,7 @@ public function getEntity(mixed $entity)
      */
     public function getAttributes(string $entityType, array $skipAttributes = ['textarea', 'image', 'file', 'address']): array
     {
-        $attributes[] = [
-            'id'          => 'lead_pipeline_stage_id',
-            'type'        => 'select',
-            'name'        => 'Stage',
-            'lookup_type' => 'lead_pipeline_stages',
-            'options'     => collect(),
-        ];
-
-        return array_merge(
-            parent::getAttributes($entityType, $skipAttributes),
-            $attributes
-        );
+        return parent::getAttributes($entityType, $skipAttributes);
     }
 
     /**