We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3539d2b commit 90181c7Copy full SHA for 90181c7
web/src/utils/uploadFileToIPFS.ts
@@ -9,7 +9,7 @@ export function uploadFileToIPFS(file: File): Promise<Response> {
9
const formData = new FormData();
10
formData.append("file", file, file.name);
11
12
- const url = "/.netlify/functions/uploadToIPFS?dapp=curate&key=curate-v2&operation=file";
+ const url = "/.netlify/functions/uploadToIPFS?operation=file";
13
14
const response = await fetch(url, {
15
method: "POST",
0 commit comments