File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ export abstract class APIClient {
163
163
maxRetries = 2 ,
164
164
timeout = 60000 , // 1 minute
165
165
httpAgent,
166
- fetch : overridenFetch ,
166
+ fetch : overriddenFetch ,
167
167
} : {
168
168
baseURL : string ;
169
169
maxRetries ?: number | undefined ;
@@ -176,7 +176,7 @@ export abstract class APIClient {
176
176
this . timeout = validatePositiveInteger ( 'timeout' , timeout ) ;
177
177
this . httpAgent = httpAgent ;
178
178
179
- this . fetch = overridenFetch ?? fetch ;
179
+ this . fetch = overriddenFetch ?? fetch ;
180
180
}
181
181
182
182
protected authHeaders ( opts : FinalRequestOptions ) : Headers {
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ describe('instantiate client', () => {
177
177
expect ( client . apiKey ) . toBe ( 'My API Key' ) ;
178
178
} ) ;
179
179
180
- test ( 'with overriden environment variable arguments' , ( ) => {
180
+ test ( 'with overridden environment variable arguments' , ( ) => {
181
181
// set options via env var
182
182
process . env [ 'BROWSERBASE_API_KEY' ] = 'another My API Key' ;
183
183
const client = new Browserbase ( { apiKey : 'My API Key' } ) ;
You can’t perform that action at this time.
0 commit comments