Skip to content

Commit

Permalink
perf: reduce barrel file usages (#71158)
Browse files Browse the repository at this point in the history
Reduces the barrel file usages across the repository. Instead of
`sentry/types`, this PR replaces ~100 usages with `sentry/types/XXXX`

Remaining usages:

```
Checked 5505 files in 834ms. No fixes needed.
Found 776 errors.
```
  • Loading branch information
anonrig committed May 20, 2024
1 parent 83096ad commit 430df91
Show file tree
Hide file tree
Showing 74 changed files with 91 additions and 75 deletions.
2 changes: 1 addition & 1 deletion static/app/chartcuterie/performance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {transformToLineSeries} from 'sentry/components/charts/lineChart';
import getBreakpointChartOptionsFromData, {
type EventBreakpointChartData,
} from 'sentry/components/events/eventStatisticalDetector/breakpointChartOptions';
import type {EventsStatsSeries} from 'sentry/types';
import type {EventsStatsSeries} from 'sentry/types/organization';
import {transformStatsResponse} from 'sentry/utils/profiling/hooks/utils';
import {lightTheme as theme} from 'sentry/utils/theme';
import type {NormalizedTrendsTransaction} from 'sentry/views/performance/trends/types';
Expand Down
3 changes: 2 additions & 1 deletion static/app/components/assigneeBadge.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import {uuid4} from '@sentry/utils';

import {AssigneeBadge} from 'sentry/components/assigneeBadge';
import storyBook from 'sentry/stories/storyBook';
import type {Actor, Team} from 'sentry/types';
import type {Actor} from 'sentry/types/core';
import type {Team} from 'sentry/types/organization';
import {useUser} from 'sentry/utils/useUser';
import {useUserTeams} from 'sentry/utils/useUserTeams';

Expand Down
3 changes: 2 additions & 1 deletion static/app/components/assigneeBadge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import Placeholder from 'sentry/components/placeholder';
import {Tooltip} from 'sentry/components/tooltip';
import {t, tct} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {Actor, SuggestedOwnerReason} from 'sentry/types';
import type {Actor} from 'sentry/types/core';
import type {SuggestedOwnerReason} from 'sentry/types/group';
import {lightTheme as theme} from 'sentry/utils/theme';

type AssigneeBadgeProps = {
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/assistant/getGuidesContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ExternalLink from 'sentry/components/links/externalLink';
import Link from 'sentry/components/links/link';
import {t, tct} from 'sentry/locale';
import ConfigStore from 'sentry/stores/configStore';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';

export default function getGuidesContent(
organization: Organization | null
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/charts/optionSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ function OptionSelector({
function isOptionDisabled(option) {
return (
// Option is explicitly marked as disabled
option.disabled ||
// The user has reached the maximum number of selections (3), and the option hasn't
// yet been selected. These options should be disabled to visually indicate that the
// user has reached the max.
option.disabled ||
(multiple && selected.length === 3 && !selected.includes(option.value))
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ export function isFrameFilenamePathlike(frame: Frame): boolean {

return (
// If all filenames are anonymous, we do not want to show this alert
// If all absolute paths do not have a file extension, we do not want to show this alert
(frame.filename === '<anonymous>' && frame.inApp) ||
// If all function names are on the blocklist, we do not want to show this alert
fileNameBlocklist.includes(frame.function ?? '') ||
// If all absolute paths do not have a file extension, we do not want to show this alert
(!!frame.absPath && !getFileExtension(filename))
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import useFeedbackCache from 'sentry/components/feedback/useFeedbackCache';
import useMutateActivity from 'sentry/components/feedback/useMutateActivity';
import {t} from 'sentry/locale';
import type {Group, GroupActivity, GroupActivityNote, User} from 'sentry/types';
import {GroupActivityType} from 'sentry/types';
import type {NoteType} from 'sentry/types/alerts';
import {GroupActivityType} from 'sentry/types/group';
import type {FeedbackIssue} from 'sentry/utils/feedback/types';
import {uniqueId} from 'sentry/utils/guid';
import useOrganization from 'sentry/utils/useOrganization';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
NormalizedInvite,
} from 'sentry/components/modals/inviteMembersModal/types';
import {t} from 'sentry/locale';
import type {Member, Organization} from 'sentry/types';
import type {Member, Organization} from 'sentry/types/organization';
import {trackAnalytics} from 'sentry/utils/analytics';
import {uniqueId} from 'sentry/utils/guid';
import {useApiQuery} from 'sentry/utils/queryClient';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/onboardingWizard/taskConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import type {
Organization,
Project,
} from 'sentry/types';
import {OnboardingTaskKey} from 'sentry/types';
import {OnboardingTaskKey} from 'sentry/types/onboarding';
import {isDemoWalkthrough} from 'sentry/utils/demoMode';
import EventWaiter from 'sentry/utils/eventWaiter';
import withApi from 'sentry/utils/withApi';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import styled from '@emotion/styled';
import {IconLock} from 'sentry/icons';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {PinnedPageFilter} from 'sentry/types';
import type {PinnedPageFilter} from 'sentry/types/core';
import usePageFilters from 'sentry/utils/usePageFilters';

type Props = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as Sentry from '@sentry/react';

import PageFiltersStore from 'sentry/stores/pageFiltersStore';
import type {PinnedPageFilter} from 'sentry/types';
import type {PinnedPageFilter} from 'sentry/types/core';
import {getUtcDateString} from 'sentry/utils/dates';
import localStorage from 'sentry/utils/localStorage';

Expand Down
2 changes: 1 addition & 1 deletion static/app/components/resolutionBox.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {UserFixture} from 'sentry-fixture/user';

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

import {GroupActivityType} from 'sentry/types';
import {GroupActivityType} from 'sentry/types/group';

import ResolutionBox from './resolutionBox';

Expand Down
2 changes: 1 addition & 1 deletion static/app/components/resolutionBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
Repository,
ResolvedStatusDetails,
} from 'sentry/types';
import {GroupActivityType} from 'sentry/types';
import {GroupActivityType} from 'sentry/types/group';

type Props = {
projectId: string;
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/searchQueryBuilder/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type {ComponentProps} from 'react';
import {render, screen, userEvent, within} from 'sentry-test/reactTestingLibrary';

import {SearchQueryBuilder} from 'sentry/components/searchQueryBuilder';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import {FieldKey, FieldKind} from 'sentry/utils/fields';

const MOCK_SUPPORTED_KEYS: TagCollection = {
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/searchQueryBuilder/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Alert from 'sentry/components/alert';
import {SearchQueryBuilder} from 'sentry/components/searchQueryBuilder';
import SizingWindow from 'sentry/components/stories/sizingWindow';
import storyBook from 'sentry/stories/storyBook';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import {FieldKey, FieldKind} from 'sentry/utils/fields';

const SUPPORTED_KEYS: TagCollection = {
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/searchSyntax/parser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import moment from 'moment';
import type {LocationRange} from 'pegjs';

import {t} from 'sentry/locale';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import {
isMeasurement,
isSpanOperationBreakdownField,
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/sidebar/utils.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {OnboardingTaskStatus} from 'sentry/types';
import type {OnboardingTaskStatus} from 'sentry/types/onboarding';

export const isDone = (task: OnboardingTaskStatus) =>
task.status === 'complete' || task.status === 'skipped';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/smartSearchBar/searchDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import HighlightQuery from 'sentry/components/searchSyntax/renderer';
import {IconOpen} from 'sentry/icons';
import {t, tct} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import {FieldKind} from 'sentry/utils/fields';

import {SearchInvalidTag} from './searchInvalidTag';
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/smartSearchBar/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {t} from 'sentry/locale';

import type {AutocompleteGroup, SearchGroup, SearchItem, Shortcut} from './types';
import {ItemType, ShortcutType, invalidTypes} from './types';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import {FieldKind, FieldValueType, getFieldDefinition} from 'sentry/utils/fields';

export function addSpace(query = '') {
Expand Down
2 changes: 1 addition & 1 deletion static/app/stores/demoWalkthroughStore.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type {StoreDefinition} from 'reflux';
import {createStore} from 'reflux';

import {OnboardingTaskKey} from 'sentry/types';
import {OnboardingTaskKey} from 'sentry/types/onboarding';

interface DemoWalkthroughStoreDefinition extends StoreDefinition {
activateGuideAnchor(guide: string): void;
Expand Down
2 changes: 1 addition & 1 deletion static/app/stores/groupStore.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {ProjectFixture} from 'sentry-fixture/project';

import GroupStore from 'sentry/stores/groupStore';
import type {Group, GroupStats, TimeseriesValue} from 'sentry/types';
import {GroupActivityType} from 'sentry/types';
import {GroupActivityType} from 'sentry/types/group';

const MOCK_PROJECT = ProjectFixture();

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

interface DateSelector {
field_changed: 'start' | 'end';
Expand Down
3 changes: 2 additions & 1 deletion static/app/utils/analytics/issueAnalyticsEvents.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type {SourceMapProcessingIssueType} from 'sentry/components/events/interfaces/crashContent/exception/useSourceMapDebug';
import type {FieldValue} from 'sentry/components/forms/model';
import type {IntegrationType, PriorityLevel} from 'sentry/types';
import type {PriorityLevel} from 'sentry/types/group';
import type {IntegrationType} from 'sentry/types/integrations';
import type {BaseEventAnalyticsParams} from 'sentry/utils/analytics/workflowAnalyticsEvents';
import type {CommonGroupAnalyticsData} from 'sentry/utils/events';

Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/analytics/workflowAnalyticsEvents.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {GroupStatus} from 'sentry/types';
import type {GroupStatus} from 'sentry/types/group';
import type {CommonGroupAnalyticsData} from 'sentry/utils/events';
import type {Tab} from 'sentry/views/issueDetails/types';

Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/demoMode.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ConfigStore from 'sentry/stores/configStore';
import {OnboardingTaskKey} from 'sentry/types';
import {OnboardingTaskKey} from 'sentry/types/onboarding';

export function extraQueryParameter(): URLSearchParams {
const extraQueryString = window.SandboxData?.extraQueryString || '';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/metrics/dashboardImport.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {MetricMeta, MRI} from 'sentry/types';
import type {MetricMeta, MRI} from 'sentry/types/metrics';
import type {ImportDashboard, ImportWidget} from 'sentry/utils/metrics/dashboardImport';
import {parseDashboard, WidgetParser} from 'sentry/utils/metrics/dashboardImport';
import {parseMRI} from 'sentry/utils/metrics/mri';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/metrics/dashboardImport.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Client} from 'sentry/api';
import type {MetricMeta, MRI} from 'sentry/types';
import type {MetricMeta, MRI} from 'sentry/types/metrics';
import {convertToDashboardWidget} from 'sentry/utils/metrics/dashboard';
import type {MetricsQuery} from 'sentry/utils/metrics/types';
import {MetricDisplayType} from 'sentry/utils/metrics/types';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/metrics/index.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {resetMockDate, setMockDate} from 'sentry-test/utils';

import type {MetricsOperation} from 'sentry/types';
import type {MetricsOperation} from 'sentry/types/metrics';
import {
getAbsoluteDateTimeRange,
getDateTimeParams,
Expand Down
3 changes: 1 addition & 2 deletions static/app/utils/metrics/mri.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type {MetricType, MRI} from 'sentry/types';
import type {ParsedMRI, UseCase} from 'sentry/types/metrics';
import type {MetricType, MRI, ParsedMRI, UseCase} from 'sentry/types/metrics';
import {DEFAULT_AGGREGATES} from 'sentry/utils/metrics/constants';
import {
defaultAggregateForMRI,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import {useMemo} from 'react';

import {normalizeDateTimeParams} from 'sentry/components/organizations/pageFilters/parse';
import type {EventsStatsSeries, PageFilters} from 'sentry/types';
import type {PageFilters} from 'sentry/types/core';
import type {EventsStatsSeries} from 'sentry/types/organization';
import {defined} from 'sentry/utils';
import {transformSingleSeries} from 'sentry/utils/profiling/hooks/utils';
import {useApiQuery} from 'sentry/utils/queryClient';
Expand Down
2 changes: 1 addition & 1 deletion static/app/utils/profiling/hooks/utils.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {t} from 'sentry/locale';
import type {EventsStatsSeries} from 'sentry/types';
import type {EventsStatsSeries} from 'sentry/types/organization';
import {defined} from 'sentry/utils';
import {getAggregateAlias} from 'sentry/utils/discover/fields';
import {makeFormatTo} from 'sentry/utils/profiling/units/units';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/alerts/rules/issue/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import {IconChevron, IconNot} from 'sentry/icons';
import {t, tct, tn} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {Environment, Member, Organization, Project, Team} from 'sentry/types';
import {OnboardingTaskKey} from 'sentry/types';
import type {
IssueAlertConfiguration,
IssueAlertRule,
Expand All @@ -59,6 +58,7 @@ import {
IssueAlertConditionType,
IssueAlertFilterType,
} from 'sentry/types/alerts';
import {OnboardingTaskKey} from 'sentry/types/onboarding';
import {metric, trackAnalytics} from 'sentry/utils/analytics';
import {browserHistory} from 'sentry/utils/browserHistory';
import {getDisplayName} from 'sentry/utils/environment';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ButtonBar from 'sentry/components/buttonBar';
import FieldGroup from 'sentry/components/forms/fieldGroup';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {TagCollection} from 'sentry/types';
import type {TagCollection} from 'sentry/types/group';
import type {QueryFieldValue} from 'sentry/utils/discover/fields';
import useCustomMeasurements from 'sentry/utils/useCustomMeasurements';
import useOrganization from 'sentry/utils/useOrganization';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/issueDetails/activitySection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import {NoteInputWithStorage} from 'sentry/components/activity/note/inputWithSto
import ErrorBoundary from 'sentry/components/errorBoundary';
import ConfigStore from 'sentry/stores/configStore';
import type {Group, GroupActivity, User} from 'sentry/types';
import {GroupActivityType} from 'sentry/types';
import type {NoteType} from 'sentry/types/alerts';
import {GroupActivityType} from 'sentry/types/group';
import {uniqueId} from 'sentry/utils/guid';
import useOrganization from 'sentry/utils/useOrganization';
import GroupActivityItem from 'sentry/views/issueDetails/groupActivityItem';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/issueDetails/groupActivityItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import type {
Project,
User,
} from 'sentry/types';
import {GroupActivityType} from 'sentry/types';
import {GroupActivityType} from 'sentry/types/group';
import {isSemverRelease} from 'sentry/utils/formatters';
import {useTeamsById} from 'sentry/utils/useTeamsById';

Expand Down
2 changes: 1 addition & 1 deletion static/app/views/llmMonitoring/llmMonitoringCharts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from '@emotion/styled';

import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {MetricsQueryApiResponseLastMeta} from 'sentry/types';
import type {MetricsQueryApiResponseLastMeta} from 'sentry/types/metrics';
import {MetricDisplayType} from 'sentry/utils/metrics/types';
import {useMetricsQuery} from 'sentry/utils/metrics/useMetricsQuery';
import usePageFilters from 'sentry/utils/usePageFilters';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/llmMonitoring/pipelineSpansTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import GridEditable, {
} from 'sentry/components/gridEditable';
import Link from 'sentry/components/links/link';
import {t} from 'sentry/locale';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import EventView, {type EventsMetaType} from 'sentry/utils/discover/eventView';
import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
import type {Sort} from 'sentry/utils/discover/fields';
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/organizationActivity/index.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {ActivityFeedFixture} from 'sentry-fixture/activityFeed';
import {initializeOrg} from 'sentry-test/initializeOrg';
import {render, screen} from 'sentry-test/reactTestingLibrary';

import {GroupActivityType} from 'sentry/types';
import {GroupActivityType} from 'sentry/types/group';
import OrganizationActivity from 'sentry/views/organizationActivity';

describe('OrganizationActivity', function () {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Link from 'sentry/components/links/link';
import type {CursorHandler} from 'sentry/components/pagination';
import Pagination from 'sentry/components/pagination';
import {t} from 'sentry/locale';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import type {EventsMetaType} from 'sentry/utils/discover/eventView';
import {getFieldRenderer} from 'sentry/utils/discover/fieldRenderers';
import type {Sort} from 'sentry/utils/discover/fields';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import LoadingIndicator from 'sentry/components/loadingIndicator';
import {ALL_ACCESS_PROJECTS, PAGE_URL_PARAM} from 'sentry/constants/pageFilters';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import {assert} from 'sentry/types/utils';
import {defined} from 'sentry/utils';
import EventView from 'sentry/utils/discover/eventView';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {CodeSnippet} from 'sentry/components/codeSnippet';
import SpanSummaryButton from 'sentry/components/events/interfaces/spans/spanSummaryButton';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import type {
TraceTree,
TraceTreeNode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type {Location} from 'history';

import QuestionTooltip from 'sentry/components/questionTooltip';
import {t} from 'sentry/locale';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import type {
TraceTree,
TraceTreeNode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import Link from 'sentry/components/links/link';
import LoadingIndicator from 'sentry/components/loadingIndicator';
import {Tooltip} from 'sentry/components/tooltip';
import {t, tn} from 'sentry/locale';
import type {Organization} from 'sentry/types';
import type {EventTransaction} from 'sentry/types/event';
import type {Organization} from 'sentry/types/organization';
import getDuration from 'sentry/utils/duration/getDuration';
import {getShortEventId} from 'sentry/utils/events';
import type {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TagFacetsDistributionMeter from 'sentry/components/group/tagFacets/tagFac
import Placeholder from 'sentry/components/placeholder';
import {t} from 'sentry/locale';
import {space} from 'sentry/styles/space';
import type {Organization} from 'sentry/types';
import type {Organization} from 'sentry/types/organization';
import {generateQueryWithTag} from 'sentry/utils';
import type EventView from 'sentry/utils/discover/eventView';
import {formatTagKey} from 'sentry/utils/discover/fields';
Expand Down

0 comments on commit 430df91

Please sign in to comment.