remove JSON.stringify from authorization tokens

This commit is contained in:
Spectralitree 2021-07-18 11:14:28 +02:00
parent 6d7f56fe58
commit cdd8037d5f
6 changed files with 14 additions and 23 deletions

View file

@ -34,10 +34,7 @@ const EditSystem = ({
body: JSON.stringify(data),
headers: {
"Content-Type": "application/json",
Authorization: JSON.stringify(localStorage.getItem("token")).slice(
1,
-1
),
Authorization: localStorage.getItem("token"),
},
})
.then((res) => res.json())