Skip to content

Commit 90181c7

Browse files
committed
refactor: remove-unused-query-params
1 parent 3539d2b commit 90181c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/utils/uploadFileToIPFS.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function uploadFileToIPFS(file: File): Promise<Response> {
99
const formData = new FormData();
1010
formData.append("file", file, file.name);
1111

12-
const url = "/.netlify/functions/uploadToIPFS?dapp=curate&key=curate-v2&operation=file";
12+
const url = "/.netlify/functions/uploadToIPFS?operation=file";
1313

1414
const response = await fetch(url, {
1515
method: "POST",

0 commit comments

Comments
 (0)