diff --git a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
index 37c820e67..ba6163518 100644
--- a/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
+++ b/packages/twenty-front/src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -127,41 +127,49 @@ export const MultiWorkspaceDropdownDefaultComponents = () => {
>
{currentWorkspace?.displayName}
-
- {workspaces
- .filter(({ id }) => id !== currentWorkspace?.id)
- .slice(0, 3)
- .map((workspace) => (
- {
- event?.preventDefault();
- handleChange(workspace);
- }}
- >
- 1 && (
+ <>
+
+ {workspaces
+ .filter(({ id }) => id !== currentWorkspace?.id)
+ .slice(0, 3)
+ .map((workspace) => (
+ {
+ event?.preventDefault();
+ handleChange(workspace);
+ }}
+ >
+
+ }
+ selected={false}
/>
+
+ ))}
+ {workspaces.length > 4 && (
+
- ))}
- {workspaces.length > 4 && (
-
- {workspaces.length > 1 && }
+ )}
+
+
+ >
+ )}