add missing headers

This commit is contained in:
m
2026-07-14 09:59:41 +02:00
parent 76ceafa56c
commit 333387ad98
5 changed files with 18 additions and 2 deletions
+4
View File
@@ -14,6 +14,10 @@ class ApiClient {
this.accessToken = token;
}
getAccessToken(): string | null {
return this.accessToken;
}
private async request<T>(
endpoint: string,
options: RequestInit = {},