diff --git a/src/components/Download/Download.tsx b/src/components/Download/Download.tsx index 5ba8b44..e6b19af 100644 --- a/src/components/Download/Download.tsx +++ b/src/components/Download/Download.tsx @@ -7,7 +7,7 @@ export function Download() { const [cid, setCid] = useState(""); const onDownload = () => { const url = CodexSdk.url() + "/api/codex/v1/data/"; - window.open(url + cid + "/network", "_target"); + window.open(url + cid + "/network/stream", "_target"); }; const onCidChange = (e: ChangeEvent) =>