Skip to content

Commit

Permalink
yarn fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Apr 19, 2022
1 parent f282c6c commit 3dc2618
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions packages/core/src/baseclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import {
EventHint,
Integration,
IntegrationClass,
NewTransport,
Severity,
SeverityLevel,
Transport,
NewTransport,
} from '@sentry/types';
import {
checkOrSetAlreadyCaught,
Expand All @@ -30,11 +30,10 @@ import {
uuid4,
} from '@sentry/utils';

import { APIDetails, initAPIDetails, getEnvelopeEndpointWithUrlEncodedAuth } from './api';
import { getEnvelopeEndpointWithUrlEncodedAuth, initAPIDetails } from './api';
import { IS_DEBUG_BUILD } from './flags';
import { IntegrationIndex, setupIntegrations } from './integration';
import { createEventEnvelope, createSessionEnvelope } from './request';
import { NewTransport } from './transports/base';

const ALREADY_SEEN_ERROR = "Not capturing exception because it's already been captured.";

Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/sdk.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { getCurrentHub } from '@sentry/hub';
import { Client, ClientOptions, NewTransport, Transport } from '@sentry/types';
import { Client, ClientOptions } from '@sentry/types';
import { logger } from '@sentry/utils';

import { IS_DEBUG_BUILD } from './flags';
Expand Down
2 changes: 1 addition & 1 deletion packages/core/test/mocks/client.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Session } from '@sentry/hub';
import { Event, Integration, Severity, SeverityLevel, Transport, ClientOptions } from '@sentry/types';
import { ClientOptions,Event, Integration, Severity, SeverityLevel, Transport } from '@sentry/types';
import { resolvedSyncPromise } from '@sentry/utils';

import { BaseClient } from '../../src/baseclient';
Expand Down

0 comments on commit 3dc2618

Please sign in to comment.