Skip to content

Commit 44183d7

Browse files
committed
fix: removed 'Content-Type' header from claims submission
1 parent c3794f2 commit 44183d7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ui/store/actions.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7753,7 +7753,10 @@ export async function submitShieldClaim(params: {
77537753
const response = await fetch(url, {
77547754
method,
77557755
body: formData,
7756-
headers,
7756+
// FIXME: remove `Content-Type: multipart/form-data` from the controller
7757+
headers: {
7758+
Authorization: headers.Authorization,
7759+
},
77577760
});
77587761

77597762
if (!response.ok) {

0 commit comments

Comments
 (0)