Skip to content

Commit b2461d3

Browse files
committed
revert export
1 parent d6e589c commit b2461d3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

static/app/components/events/interfaces/crashContent/exception/useSourceMapDebuggerData.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {getApiUrl} from 'sentry/utils/api/getApiUrl';
55
import {useApiQuery} from 'sentry/utils/queryClient';
66
import {useOrganization} from 'sentry/utils/useOrganization';
77

8-
export interface SourceMapDebugBlueThunderResponseFrame {
8+
interface SourceMapDebugBlueThunderResponseFrame {
99
debug_id_process: {
1010
debug_id: string | null;
1111
uploaded_source_file_with_correct_debug_id: boolean;
@@ -33,7 +33,7 @@ export interface SourceMapDebugBlueThunderResponseFrame {
3333
};
3434
}
3535

36-
export interface SourceMapDebugBlueThunderResponse {
36+
interface SourceMapDebugBlueThunderResponse {
3737
dist: string | null;
3838
exceptions: Array<{
3939
frames: SourceMapDebugBlueThunderResponseFrame[];

static/app/components/stackTrace/stackTrace.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {ProjectFixture} from 'sentry-fixture/project';
99
import {act, render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';
1010
import {textWithMarkupMatcher} from 'sentry-test/utils';
1111

12-
import type {SourceMapDebugBlueThunderResponse} from 'sentry/components/events/interfaces/crashContent/exception/useSourceMapDebuggerData';
1312
import {DisplayOptions} from 'sentry/components/stackTrace/displayOptions';
1413
import {FrameContent} from 'sentry/components/stackTrace/frame/frameContent';
1514
import {IssueFrameActions} from 'sentry/components/stackTrace/issueStackTrace/issueFrameActions';
@@ -497,7 +496,7 @@ describe('Core StackTrace', () => {
497496
release_has_some_artifact: false,
498497
sdk_debug_id_support: 'not-supported',
499498
sdk_version: '10.0.0',
500-
} satisfies SourceMapDebugBlueThunderResponse,
499+
},
501500
});
502501

503502
render(

0 commit comments

Comments
 (0)