From a9832f81a9eaedcb72abc143c3c052b1aeefff28 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Tue, 22 Oct 2024 10:21:50 +0200 Subject: [PATCH] Fix the download api url link --- src/components/Download/Download.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) =>