Skip to content

Commit 3e07695

Browse files
committed
fix it
1 parent 58bb953 commit 3e07695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/browser/src/backend.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class BrowserBackend extends BaseBackend<BrowserOptions> {
5252
/**
5353
* @inheritDoc
5454
*/
55-
protected setupTransport(): Transport {
55+
protected _setupTransport(): Transport {
5656
if (!this._options.dsn) {
5757
// We return the noop transport here in case there is no Dsn.
5858
return super._setupTransport();

packages/browser/src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { API, captureException, withScope } from '@sentry/core';
22
import { DsnLike, Event as SentryEvent, Mechanism, Scope, WrappedFunction } from '@sentry/types';
33
import { addExceptionMechanism, addExceptionTypeValue, logger } from '@sentry/utils';
44

5-
let ignoreOnError = 0;
5+
let ignoreOnError: number = 0;
66

77
/**
88
* @hidden

0 commit comments

Comments
 (0)