diff --git a/packages/twenty-front/src/modules/workflow/workflow-variables/components/WorkflowVariablesDropdownFieldItems.tsx b/packages/twenty-front/src/modules/workflow/workflow-variables/components/WorkflowVariablesDropdownFieldItems.tsx
index 67bf4c0dc..606a52408 100644
--- a/packages/twenty-front/src/modules/workflow/workflow-variables/components/WorkflowVariablesDropdownFieldItems.tsx
+++ b/packages/twenty-front/src/modules/workflow/workflow-variables/components/WorkflowVariablesDropdownFieldItems.tsx
@@ -20,13 +20,13 @@ import { getStepHeaderLabel } from '@/workflow/workflow-variables/utils/getStepH
import { isLinkOutputSchema } from '@/workflow/workflow-variables/utils/isLinkOutputSchema';
import { useState } from 'react';
import { useSetRecoilState } from 'recoil';
+import { isDefined } from 'twenty-shared/utils';
import {
IconChevronLeft,
MenuItemSelect,
OverflowingTextWithTooltip,
useIcons,
} from 'twenty-ui';
-import { isDefined } from 'twenty-shared/utils';
type WorkflowVariablesDropdownFieldItemsProps = {
step: StepOutputSchema;
@@ -136,7 +136,7 @@ export const WorkflowVariablesDropdownFieldItems = ({
onChange={(event) => setSearchInputValue(event.target.value)}
/>
-
+
{filteredOptions.map(([key, subStep]) => (
setSearchInputValue(event.target.value)}
/>
-
+
{shouldDisplaySubStepObject && displayedSubStepObject?.label && (
setSearchInputValue(event.target.value)}
/>
-
+
{availableSteps.length > 0 ? (
availableSteps.map((item, _index) => (