Skip to content

Commit faae067

Browse files
committed
fix formatting issues
1 parent 0f5fe19 commit faae067

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/core/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { _INTERNAL_flushMetricsBuffer } from './metrics/internal';
1111
import type { Scope } from './scope';
1212
import { updateSession } from './session';
1313
import { getDynamicSamplingContextFromScope } from './tracing/dynamicSamplingContext';
14+
import { isStreamedBeforeSendSpanCallback } from './tracing/spans/beforeSendSpan';
1415
import { DEFAULT_TRANSPORT_BUFFER_SIZE } from './transports/base';
1516
import type { Breadcrumb, BreadcrumbHint, FetchBreadcrumbHint, XhrBreadcrumbHint } from './types-hoist/breadcrumb';
1617
import type { CheckIn, MonitorConfig } from './types-hoist/checkin';
@@ -34,7 +35,6 @@ import type { SeverityLevel } from './types-hoist/severity';
3435
import type { Span, SpanAttributes, SpanContextData, SpanJSON, StreamedSpanJSON } from './types-hoist/span';
3536
import type { StartSpanOptions } from './types-hoist/startSpanOptions';
3637
import type { Transport, TransportMakeRequestResponse } from './types-hoist/transport';
37-
import { isStreamedBeforeSendSpanCallback } from './tracing/spans/beforeSendSpan';
3838
import { createClientReportEnvelope } from './utils/clientreport';
3939
import { debug } from './utils/debug-logger';
4040
import { dsnToString, makeDsn } from './utils/dsn';

packages/core/src/envelope.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { Client } from './client';
22
import { getDynamicSamplingContextFromSpan } from './tracing/dynamicSamplingContext';
33
import type { SentrySpan } from './tracing/sentrySpan';
4+
import { isStreamedBeforeSendSpanCallback } from './tracing/spans/beforeSendSpan';
45
import type { LegacyCSPReport } from './types-hoist/csp';
56
import type { DsnComponents } from './types-hoist/dsn';
67
import type {
@@ -18,7 +19,6 @@ import type { Event } from './types-hoist/event';
1819
import type { SdkInfo } from './types-hoist/sdkinfo';
1920
import type { SdkMetadata } from './types-hoist/sdkmetadata';
2021
import type { Session, SessionAggregates } from './types-hoist/session';
21-
import { isStreamedBeforeSendSpanCallback } from './tracing/spans/beforeSendSpan';
2222
import { dsnToString } from './utils/dsn';
2323
import {
2424
createEnvelope,

packages/core/src/tracing/spans/captureSpan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
SEMANTIC_ATTRIBUTE_USER_USERNAME,
1616
} from '../../semanticAttributes';
1717
import type { SerializedStreamedSpan, Span, StreamedSpanJSON } from '../../types-hoist/span';
18-
import { isStreamedBeforeSendSpanCallback } from './beforeSendSpan';
1918
import { getCombinedScopeData } from '../../utils/scopeData';
2019
import {
2120
INTERNAL_getSegmentSpan,
@@ -24,6 +23,7 @@ import {
2423
streamedSpanJsonToSerializedSpan,
2524
} from '../../utils/spanUtils';
2625
import { getCapturedScopesOnSpan } from '../utils';
26+
import { isStreamedBeforeSendSpanCallback } from './beforeSendSpan';
2727

2828
export type SerializedStreamedSpanWithSegmentSpan = SerializedStreamedSpan & {
2929
_segmentSpan: Span;

0 commit comments

Comments
 (0)