Skip to content

Commit

Permalink
rebase cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
kayra1 committed Aug 1, 2024
1 parent 9083fe2 commit 8ab2e15
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions ui/src/app/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ export async function deleteUser(params: { authToken: string, id: string }) {
export async function postFirstUser(userForm: { username: string, password: string }) {
const response = await fetch("/api/v1/accounts", {
method: "POST",
headers: {
'Authorization': "Bearer " + userForm.authToken
},
body: JSON.stringify({ "username": userForm.username, "password": userForm.password })
})
const responseText = await response.text()
Expand Down

0 comments on commit 8ab2e15

Please sign in to comment.