Skip to content

Commit

Permalink
correct casing in form
Browse files Browse the repository at this point in the history
  • Loading branch information
harryob committed Oct 23, 2024
1 parent 58f9cdb commit b64b879
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/userLookup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -656,9 +656,9 @@ const AddNote = (props: { player: Player }) => {
"Content-Type": "application/x-www-form-urlencoded",
},
body: new URLSearchParams({
Message: message,
Category: "1",
Confidential: confidential ? "true" : "false",
message: message,
category: "1",
confidential: confidential ? "true" : "false",
}),
}).then((response) => {
response.text().then((response) => {
Expand Down

0 comments on commit b64b879

Please sign in to comment.