Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/app/components/assigneeBadge.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Fragment, useState} from 'react';
import {uuid4} from '@sentry/utils';
import {uuid4} from '@sentry/core';

import {AssigneeBadge} from 'sentry/components/assigneeBadge';
import storyBook from 'sentry/stories/storyBook';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/modals/widgetViewerModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {Fragment, memo, useEffect, useMemo, useState} from 'react';
import {components} from 'react-select';
import {css} from '@emotion/react';
import styled from '@emotion/styled';
import {truncate} from '@sentry/core';
import * as Sentry from '@sentry/react';
import {truncate} from '@sentry/utils';
import type {Location} from 'history';
import cloneDeep from 'lodash/cloneDeep';
import isEqual from 'lodash/isEqual';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/metrics/dashboard.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';

import type {PageFilters} from 'sentry/types/core';
import {defined} from 'sentry/utils';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/profiling/routes.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {dropUndefinedKeys} from '@sentry/utils';
import {dropUndefinedKeys} from '@sentry/core';
import type {Location, LocationDescriptor, Path} from 'history';

import type {Organization} from 'sentry/types/organization';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/profiling/spanTree.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {uuid4} from '@sentry/utils';
import {uuid4} from '@sentry/core';

import type {RawSpanType} from 'sentry/components/events/interfaces/spans/types';
import {isEventFromBrowserJavaScriptSDK} from 'sentry/components/events/interfaces/spans/utils';
Expand Down
6 changes: 3 additions & 3 deletions static/app/views/alerts/rules/uptime/httpSnippet.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {generateSentryTraceHeader} from '@sentry/utils';
import {generateSentryTraceHeader} from '@sentry/core';

import {render, screen} from 'sentry-test/reactTestingLibrary';

import {HTTPSnippet} from './httpSnippet';

jest.mock('@sentry/utils', () => ({
...jest.requireActual('@sentry/utils'),
jest.mock('@sentry/core', () => ({
...jest.requireActual('@sentry/core'),
generateSentryTraceHeader: jest.fn(() => 'sentry-trace-value'),
}));

Expand Down
2 changes: 1 addition & 1 deletion static/app/views/alerts/rules/uptime/httpSnippet.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {useMemo} from 'react';
import styled from '@emotion/styled';
import {generateSentryTraceHeader} from '@sentry/utils';
import {generateSentryTraceHeader} from '@sentry/core';

import {CodeSnippet} from 'sentry/components/codeSnippet';
import {t} from 'sentry/locale';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';
import {DashboardFixture} from 'sentry-fixture/dashboard';
import {LocationFixture} from 'sentry-fixture/locationFixture';
import {MetricsFieldFixture} from 'sentry-fixture/metrics';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';
import {DashboardFixture} from 'sentry-fixture/dashboard';
import {LocationFixture} from 'sentry-fixture/locationFixture';
import {MetricsFieldFixture} from 'sentry-fixture/metrics';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';
import {DashboardFixture} from 'sentry-fixture/dashboard';
import {LocationFixture} from 'sentry-fixture/locationFixture';
import {MetricsFieldFixture} from 'sentry-fixture/metrics';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/discover/utils.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';
import type {Location, Query} from 'history';
import * as Papa from 'papaparse';

Expand Down
2 changes: 1 addition & 1 deletion static/app/views/integrationOrganizationLink/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Fragment} from 'react';
import styled from '@emotion/styled';
import {urlEncode} from '@sentry/utils';
import {urlEncode} from '@sentry/core';

import {addErrorMessage} from 'sentry/actionCreators/indicator';
import {Alert} from 'sentry/components/alert';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {uuid4} from '@sentry/utils';
import {uuid4} from '@sentry/core';

import {EntryType, type Event, type EventTransaction} from 'sentry/types/event';
import type {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {useCallback, useState} from 'react';
import styled from '@emotion/styled';
import {isString} from '@sentry/utils';
import {isString} from '@sentry/core';
import type {Location} from 'history';

import {addErrorMessage} from 'sentry/actionCreators/indicator';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {useTheme} from '@emotion/react';
import styled from '@emotion/styled';
import {useOverlay} from '@react-aria/overlays';
import {useOverlayTriggerState} from '@react-stately/overlays';
import {truncate} from '@sentry/utils';
import {truncate} from '@sentry/core';
import type {VisualMapComponentOption} from 'echarts';
import type {Location} from 'history';
import memoize from 'lodash/memoize';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {uuid4} from '@sentry/core';
import * as Sentry from '@sentry/react';
import {uuid4} from '@sentry/utils';

import {initializeOrg} from 'sentry-test/initializeOrg';
import {render, waitFor} from 'sentry-test/reactTestingLibrary';
Expand Down
Loading