diff --git a/src/components/shared/TaskDetails/Actions.tsx b/src/components/shared/TaskDetails/Actions.tsx
index fea26d219..7acb07de5 100644
--- a/src/components/shared/TaskDetails/Actions.tsx
+++ b/src/components/shared/TaskDetails/Actions.tsx
@@ -1,6 +1,7 @@
import { useState } from "react";
import { FaPython } from "react-icons/fa";
+import { BlockStack } from "@/components/ui/layout";
import useToastNotification from "@/hooks/useToastNotification";
import type { HydratedComponentReference } from "@/utils/componentSpec";
import {
@@ -109,11 +110,14 @@ const TaskActions = ({
},
];
- const allActions: Action[] = [...customActions, ...sharedActions];
-
return (
<>
-
+
+
+ {customActions.length > 0 && (
+
+ )}
+
{isEditDialogOpen && (