handleNavigate function
Last updated: 2026-03-05T20:45:07.036Z
Metrics
LOC: 8
Complexity: 2
Params: 1
Signature
handleNavigate(step: FlowStep): : StepResult
Source Code
function handleNavigate(step: FlowStep): StepResult {
if (!step.url) {
return { status: "failed", error: "Navigate step missing url" };
}
// Navigation handled by orchestrator via chrome.tabs.update — this is a no-op
// when executed in content script context. Return success so orchestrator proceeds.
return { status: "success" };
}
No outgoing dependencies.
Impact (Incoming)
| Source | Type |
|---|---|
| executeStep | calls |