update: add bearer in the verity auth headers

This commit is contained in:
mahyargdz
2024-12-08 10:33:37 +03:30
parent 5c1773b51d
commit 4603468ef1
+1 -1
View File
@@ -35,7 +35,7 @@ const verityAxiosConfig = () => {
return {
baseURL: verityBaseUrl,
headers: {
Authorization: verityToken
Authorization: `Bearer ${verityToken}`
}
}
}