We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707e622 commit 75e71feCopy full SHA for 75e71fe
packages/integrations/src/transactionactivity.ts
@@ -4,11 +4,6 @@ import { getGlobalObject } from '@sentry/utils';
4
/** JSDoc */
5
interface TransactionActivityOptions {
6
idleTimeout: number;
7
- patchHistory: boolean;
8
- /**
9
- * Called when an history change happend
10
- */
11
- onLocationChange(state: any): string;
12
startTransactionOnLocationChange: boolean;
13
tracesSampleRate: number;
14
}
@@ -60,8 +55,6 @@ export class TransactionActivity implements Integration {
60
55
public constructor(public readonly _options?: Partial<TransactionActivityOptions>) {
61
56
const defaults = {
62
57
idleTimeout: 500,
63
- onLocationChange: () => global.location.href,
64
- patchHistory: true,
65
58
startTransactionOnLocationChange: true,
66
59
tracesSampleRate: 1,
67
};
0 commit comments