We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab5db4 commit ccab6b6Copy full SHA for ccab6b6
src/client.ts
@@ -385,8 +385,8 @@ export class Gitpod {
385
return;
386
}
387
388
- protected authHeaders(opts: FinalRequestOptions): Headers | undefined {
389
- return new Headers({ Authorization: `Bearer ${this.bearerToken}` });
+ protected authHeaders(opts: FinalRequestOptions): NullableHeaders | undefined {
+ return buildHeaders([{ Authorization: `Bearer ${this.bearerToken}` }]);
390
391
392
/**
0 commit comments