diff --git a/packages/twenty-front/src/modules/applications/components/AppChip.tsx b/packages/twenty-front/src/modules/applications/components/AppChip.tsx
index 98faef32fd..e0a8d5dd90 100644
--- a/packages/twenty-front/src/modules/applications/components/AppChip.tsx
+++ b/packages/twenty-front/src/modules/applications/components/AppChip.tsx
@@ -15,6 +15,7 @@ type AppChipProps = {
name?: string | null;
};
className?: string;
+ chipOnly?: boolean;
};
const StyledContainer = styled.div`
@@ -34,6 +35,7 @@ export const AppChip = ({
size = 'sm',
fallbackApplicationData,
className,
+ chipOnly = false,
}: AppChipProps) => {
const { applicationChipData } = useApplicationChipData({
applicationId,
@@ -52,7 +54,9 @@ export const AppChip = ({
backgroundColor={applicationChipData.colors?.backgroundColor}
borderColor={applicationChipData.colors?.borderColor}
/>
-
+ {!chipOnly && (
+
+ )}
);
};
diff --git a/packages/twenty-front/src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx b/packages/twenty-front/src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
index 4f51147c7b..16e2d5fae7 100644
--- a/packages/twenty-front/src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
+++ b/packages/twenty-front/src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
@@ -9,11 +9,9 @@ import { CORE_ACTIONS } from '@/workflow/workflow-steps/workflow-actions/constan
import { FLOW_ACTIONS } from '@/workflow/workflow-steps/workflow-actions/constants/FlowActions';
import { HUMAN_INPUT_ACTIONS } from '@/workflow/workflow-steps/workflow-actions/constants/HumanInputActions';
import { RECORD_ACTIONS } from '@/workflow/workflow-steps/workflow-actions/constants/RecordActions';
-import { getActionIconColorOrThrow } from '@/workflow/workflow-steps/workflow-actions/utils/getActionIconColorOrThrow';
+import { ToolMenuItem } from '@/side-panel/pages/workflow/action/components/ToolMenuItem';
import { useLingui } from '@lingui/react/macro';
import { isDefined } from 'twenty-shared/utils';
-import { IconFunction } from 'twenty-ui/display';
-import { MenuItem } from 'twenty-ui/navigation';
export type WorkflowActionSelection = {
type: WorkflowActionType;
@@ -91,19 +89,12 @@ export const SidePanelWorkflowSelectAction = ({
{toolFunctions.length > 0 && (
<>
- {t`Applications`}
+ {t`Other`}
{toolFunctions.map((fn) => (
-