Skip to content

Commit c8d3355

Browse files
committed
browser: update browserclient
1 parent 83bc92a commit c8d3355

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/browser/src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class BrowserClient extends BaseClient<BrowserOptions> {
3939
*
4040
* @param options Configuration options for this SDK.
4141
*/
42-
public constructor(options: BrowserOptions = {}, transport: Transport, newTransport?: NewTransport) {
42+
public constructor(options: BrowserOptions = {}, transport: NewTransport) {
4343
options._metadata = options._metadata || {};
4444
options._metadata.sdk = options._metadata.sdk || {
4545
name: 'sentry.javascript.browser',
@@ -52,7 +52,7 @@ export class BrowserClient extends BaseClient<BrowserOptions> {
5252
version: SDK_VERSION,
5353
};
5454

55-
super(options, transport, newTransport);
55+
super(options, transport);
5656
}
5757

5858
/**

0 commit comments

Comments
 (0)