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
+2 -5
View File
@@ -28,10 +28,7 @@ const { register, handleSubmit } = useForm();
fetch(`${API_URL}s/`, {
method: "GET",
headers: {
Authorization: JSON.stringify(localStorage.getItem("token")).slice(
1,
-1
),
Authorization: localStorage.getItem("token"),
},
})
// put all the system data in localstorage
@@ -72,7 +69,7 @@ const { register, handleSubmit } = useForm();
fetch(`${API_URL}s/`,{
method: 'GET',
headers: {
'Authorization': JSON.stringify(localStorage.getItem("token")).slice(1, -1)
'Authorization': localStorage.getItem("token")
}}).then ( res => res.json()
).then (data => {
localStorage.setItem('user', JSON.stringify(data));