diff --git a/web/src/components/architecture/execution-flow.tsx b/web/src/components/architecture/execution-flow.tsx index 986560ce0..efeb1b77f 100644 --- a/web/src/components/architecture/execution-flow.tsx +++ b/web/src/components/architecture/execution-flow.tsx @@ -2,7 +2,6 @@ import { useEffect, useState } from "react"; import { motion } from "framer-motion"; -import { useTranslations } from "@/lib/i18n"; import { getFlowForVersion } from "@/data/execution-flows"; import type { FlowNode, FlowEdge } from "@/types/agent-data"; @@ -186,7 +185,6 @@ interface ExecutionFlowProps { } export function ExecutionFlow({ version }: ExecutionFlowProps) { - const t = useTranslations("version"); const [flow, setFlow] = useState>(null); useEffect(() => { @@ -198,46 +196,43 @@ export function ExecutionFlow({ version }: ExecutionFlowProps) { const maxY = Math.max(...flow.nodes.map((n) => n.y)) + 50; return ( -
-

{t("execution_flow")}

-
- - - - - - - - {flow.edges.map((edge, i) => ( - - ))} - - {flow.nodes.map((node, i) => ( - - - - ))} - -
-
+
+ + + + + + + + {flow.edges.map((edge, i) => ( + + ))} + + {flow.nodes.map((node, i) => ( + + + + ))} + +
); }