fix: malformed Bearer header in id-cards provider

This commit is contained in:
Rainer Killinger
2024-03-22 10:26:52 +01:00
parent 100607740b
commit e71355a2fb

View File

@@ -41,7 +41,7 @@ export class IdCardsProvider {
// eslint-disable-next-line unicorn/no-null
return this.httpClient.post(url, null, {
headers: {
Authorization: `Bearer: ${token}`,
Authorization: `Bearer ${token}`,
},
responseType: 'json',
}) as Observable<SCIdCard[]>;