Skip to content

Commit 04a0c5c

Browse files
committed
fix linting
1 parent 73aae9b commit 04a0c5c

File tree

5 files changed

+3
-6
lines changed

5 files changed

+3
-6
lines changed

packages/core/src/baseclient.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import type {
2424
SeverityLevel,
2525
Span,
2626
StartSpanOptions,
27-
Transaction,
2827
TransactionEvent,
2928
Transport,
3029
TransportMakeRequestResponse,

packages/core/test/lib/base.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Client, Envelope, Event, Transaction } from '@sentry/types';
1+
import type { Client, Envelope, Event } from '@sentry/types';
22
import { SentryError, SyncPromise, dsnToString, logger } from '@sentry/utils';
33

44
import {

packages/replay/src/replay.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ import {
55
captureException,
66
getActiveSpan,
77
getClient,
8-
getCurrentScope,
98
getRootSpan,
109
spanToJSON,
1110
} from '@sentry/core';
12-
import type { ReplayRecordingMode, Span, Transaction } from '@sentry/types';
11+
import type { ReplayRecordingMode, Span } from '@sentry/types';
1312
import { logger } from '@sentry/utils';
1413

1514
import {

packages/sveltekit/test/server/handle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from '@sentry/core';
99
import { NodeClient, setCurrentClient } from '@sentry/node-experimental';
1010
import * as SentryNode from '@sentry/node-experimental';
11-
import type { Span, Transaction } from '@sentry/types';
11+
import type { Span } from '@sentry/types';
1212
import type { Handle } from '@sveltejs/kit';
1313
import { redirect } from '@sveltejs/kit';
1414
import { vi } from 'vitest';

packages/types/src/client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import type { Session, SessionAggregates } from './session';
1616
import type { SeverityLevel } from './severity';
1717
import type { Span } from './span';
1818
import type { StartSpanOptions } from './startSpanOptions';
19-
import type { Transaction } from './transaction';
2019
import type { Transport, TransportMakeRequestResponse } from './transport';
2120

2221
/**

0 commit comments

Comments
 (0)