diff --git a/app/gui/src/dashboard/pages/dashboard/DashboardTabBar.tsx b/app/gui/src/dashboard/pages/dashboard/DashboardTabBar.tsx index 437b5806ef..81911cbc5a 100644 --- a/app/gui/src/dashboard/pages/dashboard/DashboardTabBar.tsx +++ b/app/gui/src/dashboard/pages/dashboard/DashboardTabBar.tsx @@ -1,7 +1,7 @@ /** @file The tab bar for the dashboard page. */ import DriveIcon from '#/assets/drive.svg' +import NetworkIcon from '#/assets/network.svg' import SettingsIcon from '#/assets/settings.svg' -import WorkspaceIcon from '#/assets/workspace.svg' import { useEventCallback } from '#/hooks/eventCallbackHooks' import TabBar from '#/layouts/TabBar' @@ -59,7 +59,7 @@ export function DashboardTabBar(props: DashboardTabBarProps) { (project) => ({ id: project.id, - icon: WorkspaceIcon, + icon: NetworkIcon, 'data-testid': 'editor-tab-button', labelId: 'editorPageName' satisfies TextId, // There is no shared enum type, but the other union member is the same type.