diff --git a/src/components/Learn/tours/navigatingEditor.tour.json b/src/components/Learn/tours/navigatingEditor.tour.json index d697e759c..6e3bb121d 100644 --- a/src/components/Learn/tours/navigatingEditor.tour.json +++ b/src/components/Learn/tours/navigatingEditor.tour.json @@ -81,8 +81,7 @@ "stepInteraction": true, "interaction": "undock-window", "targetWindowId": "context-panel", - "targetWindowName": "Task Properties", - "fallbackContent": "Windows are flexible. Try grabbing the Task Properties header and dragging it around the canvas." + "targetWindowName": "Task Properties" }, { "selector": "[data-window-id=\"context-panel\"]", @@ -91,8 +90,7 @@ "stepInteraction": true, "interaction": "redock-window", "targetWindowId": "context-panel", - "targetWindowName": "Task Properties", - "fallbackContent": "Windows can be docked in either sidebar. Create the perfect layout that suits you!" + "targetWindowName": "Task Properties" }, { "selector": "[data-tracking-id=\"v2.pipeline_editor.windows_menu\"]", diff --git a/src/components/Learn/tours/registry.ts b/src/components/Learn/tours/registry.ts index d1d61b474..1c5296d34 100644 --- a/src/components/Learn/tours/registry.ts +++ b/src/components/Learn/tours/registry.ts @@ -10,7 +10,6 @@ export type TourStep = StepType & resetLibrarySearch?: boolean; ensureWindowRestored?: string; requiresTaskSelected?: string; - fallbackContent?: string; }; export interface TourDefinition { diff --git a/src/components/shared/SubgraphBreadcrumbsView.tsx b/src/components/shared/SubgraphBreadcrumbsView.tsx index 375b1ce20..9f0634329 100644 --- a/src/components/shared/SubgraphBreadcrumbsView.tsx +++ b/src/components/shared/SubgraphBreadcrumbsView.tsx @@ -55,7 +55,6 @@ export const SubgraphBreadcrumbsView = ({ onClick={() => onNavigate(index)} className="h-6 px-2" data-tour-crumb={isRoot ? "root" : "ancestor"} - data-tour-crumb-index={index} {...(getCrumbTracking?.(index) ?? {})} > {isRoot ? ( diff --git a/src/routes/v2/pages/Editor/EditorV2.tsx b/src/routes/v2/pages/Editor/EditorV2.tsx index 5d032fdef..850b97631 100644 --- a/src/routes/v2/pages/Editor/EditorV2.tsx +++ b/src/routes/v2/pages/Editor/EditorV2.tsx @@ -36,7 +36,7 @@ import { createEditorAgentWorker } from "./components/AiChat/editorAgentWorker"; import { useDebugPanelWindow } from "./components/DebugPanel"; import { DriverPermissionGate } from "./components/DriverPermissionGate"; import { EditorMenuBar } from "./components/EditorMenuBar/EditorMenuBar"; -import { EditorTourBridge } from "./components/EditorTourBridge"; +import { EditorTourBridge } from "./components/EditorTourBridge/EditorTourBridge"; import { EmptyEditorState } from "./components/EmptyEditorState"; import { FlowCanvas } from "./components/FlowCanvas/FlowCanvas"; import { useAiChatWindow } from "./hooks/useAiChatWindow"; diff --git a/src/routes/v2/pages/Editor/components/EditorMenuBar/EditorMenuBar.tsx b/src/routes/v2/pages/Editor/components/EditorMenuBar/EditorMenuBar.tsx index 299e2b2f6..b95f1a0f3 100644 --- a/src/routes/v2/pages/Editor/components/EditorMenuBar/EditorMenuBar.tsx +++ b/src/routes/v2/pages/Editor/components/EditorMenuBar/EditorMenuBar.tsx @@ -54,7 +54,6 @@ export const EditorMenuBar = observer(function EditorMenuBar() {