Skip to content

Commit 730010a

Browse files
committed
yarn fix
1 parent 288a5d3 commit 730010a

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

packages/nextjs/src/common/wrapAppGetInitialPropsWithSentry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {
22
addTracingExtensions,
33
getActiveSpan,
4-
getClient,
54
getDynamicSamplingContextFromSpan,
65
getRootSpan,
76
spanToTraceHeader,

packages/nextjs/src/common/wrapGetStaticPropsWithSentry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { addTracingExtensions, getClient } from '@sentry/core';
1+
import { addTracingExtensions } from '@sentry/core';
22
import type { GetStaticProps } from 'next';
33

44
import { isBuild } from './utils/isBuild';

packages/node/test/index.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ import {
2626
import { setNodeAsyncContextStrategy } from '../src/async';
2727
import { ContextLines } from '../src/integrations';
2828
import { defaultStackParser, getDefaultIntegrations } from '../src/sdk';
29-
import type { NodeClientOptions } from '../src/types';
3029
import { getDefaultNodeClientOptions } from './helper/node-client-options';
3130

3231
jest.mock('@sentry/core', () => {

packages/node/test/integrations/http.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Transaction } from '@sentry/core';
77
import { getCurrentScope, setUser, spanToJSON, startInactiveSpan } from '@sentry/core';
88
import { addTracingExtensions } from '@sentry/core';
99
import type { TransactionContext } from '@sentry/types';
10-
import { TRACEPARENT_REGEXP, logger } from '@sentry/utils';
10+
import { TRACEPARENT_REGEXP } from '@sentry/utils';
1111
import * as nock from 'nock';
1212
import { HttpsProxyAgent } from '../../src/proxy';
1313

packages/tracing-internal/src/node/integrations/express.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable max-lines */
22
import { SEMANTIC_ATTRIBUTE_SENTRY_SOURCE, spanToJSON } from '@sentry/core';
3-
import type { Hub, Integration, PolymorphicRequest, Transaction } from '@sentry/types';
3+
import type { Integration, PolymorphicRequest, Transaction } from '@sentry/types';
44
import {
55
GLOBAL_OBJ,
66
extractPathForTransaction,

packages/tracing-internal/src/node/integrations/prisma.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, getCurrentHub, startSpan } from '@sentry/core';
1+
import { SEMANTIC_ATTRIBUTE_SENTRY_ORIGIN, startSpan } from '@sentry/core';
22
import type { Integration } from '@sentry/types';
33
import { addNonEnumerableProperty, logger } from '@sentry/utils';
44

0 commit comments

Comments
 (0)