diff --git a/desktop/src/features/workflows/ui/WorkflowCard.tsx b/desktop/src/features/workflows/ui/WorkflowCard.tsx index fccc10355..b42f07797 100644 --- a/desktop/src/features/workflows/ui/WorkflowCard.tsx +++ b/desktop/src/features/workflows/ui/WorkflowCard.tsx @@ -37,7 +37,6 @@ import { } from "@/shared/ui/dropdown-menu"; import { getWorkflowCardLabel, - getWorkflowDescription, getWorkflowDisplayStatus, getWorkflowEnabled, getWorkflowPrimaryAction, @@ -217,7 +216,6 @@ export function WorkflowCard({ const customEmoji = useCustomEmoji(); const isEnabled = getWorkflowEnabled(workflow.definition); const displayStatus = getWorkflowDisplayStatus(workflow); - const description = getWorkflowDescription(workflow.definition); const configuredTrigger = getWorkflowTriggerConfig(workflow.definition); const trigger = configuredTrigger ?? { on: "message_posted" as const }; const triggerPresentation = useWorkflowTriggerPresentation({ @@ -383,12 +381,6 @@ export function WorkflowCard({ text={cardLabel} /> - {description ? ( -
- {description} -
- ) : null} -diff --git a/desktop/src/features/workflows/ui/WorkflowConditionBuilder.tsx b/desktop/src/features/workflows/ui/WorkflowConditionBuilder.tsx index 927379734..66990df49 100644 --- a/desktop/src/features/workflows/ui/WorkflowConditionBuilder.tsx +++ b/desktop/src/features/workflows/ui/WorkflowConditionBuilder.tsx @@ -752,7 +752,7 @@ export function WorkflowConditionBuilder({ {isExpanded && activeEditor ? (