|
@@ -18,23 +18,20 @@ import usePageFilters from 'sentry/utils/usePageFilters';
|
|
|
import useRouter from 'sentry/utils/useRouter';
|
|
|
import {useReleaseSelection} from 'sentry/views/insights/common/queries/useReleases';
|
|
|
import {appendReleaseFilters} from 'sentry/views/insights/common/utils/releaseComparison';
|
|
|
+import {AverageComparisonChart} from 'sentry/views/insights/mobile/appStarts/components/charts/averageComparisonChart';
|
|
|
+import {CountChart} from 'sentry/views/insights/mobile/appStarts/components/charts/countChart';
|
|
|
+import {COLD_START_TYPE} from 'sentry/views/insights/mobile/appStarts/components/startTypeSelector';
|
|
|
+import {AppStartScreens} from 'sentry/views/insights/mobile/appStarts/components/tables/screensTable';
|
|
|
+import useCrossPlatformProject from 'sentry/views/insights/mobile/common/queries/useCrossPlatformProject';
|
|
|
+import useTruncatedReleaseNames from 'sentry/views/insights/mobile/common/queries/useTruncatedRelease';
|
|
|
+import {TOP_SCREENS} from 'sentry/views/insights/mobile/constants';
|
|
|
+import {ScreensBarChart} from 'sentry/views/insights/mobile/screenload/components/charts/screenBarChart';
|
|
|
+import {getFreeTextFromQuery} from 'sentry/views/insights/mobile/screenload/components/screensView';
|
|
|
+import {useTableQuery} from 'sentry/views/insights/mobile/screenload/components/tables/screensTable';
|
|
|
+import {YAxis, YAXIS_COLUMNS} from 'sentry/views/insights/mobile/screenload/constants';
|
|
|
+import {transformReleaseEvents} from 'sentry/views/insights/mobile/screenload/utils';
|
|
|
import {ModuleName, SpanMetricsField} from 'sentry/views/insights/types';
|
|
|
import {prepareQueryForLandingPage} from 'sentry/views/performance/data';
|
|
|
-import {AverageComparisonChart} from 'sentry/views/performance/mobile/appStarts/screens/averageComparisonChart';
|
|
|
-import {CountChart} from 'sentry/views/performance/mobile/appStarts/screens/countChart';
|
|
|
-import {AppStartScreens} from 'sentry/views/performance/mobile/appStarts/screens/screensTable';
|
|
|
-import {COLD_START_TYPE} from 'sentry/views/performance/mobile/appStarts/screenSummary/startTypeSelector';
|
|
|
-import {TOP_SCREENS} from 'sentry/views/performance/mobile/constants';
|
|
|
-import {
|
|
|
- getFreeTextFromQuery,
|
|
|
- YAxis,
|
|
|
- YAXIS_COLUMNS,
|
|
|
-} from 'sentry/views/performance/mobile/screenload/screens';
|
|
|
-import {ScreensBarChart} from 'sentry/views/performance/mobile/screenload/screens/screenBarChart';
|
|
|
-import {useTableQuery} from 'sentry/views/performance/mobile/screenload/screens/screensTable';
|
|
|
-import {transformReleaseEvents} from 'sentry/views/performance/mobile/screenload/screens/utils';
|
|
|
-import useCrossPlatformProject from 'sentry/views/performance/mobile/useCrossPlatformProject';
|
|
|
-import useTruncatedReleaseNames from 'sentry/views/performance/mobile/useTruncatedRelease';
|
|
|
import {getTransactionSearchQuery} from 'sentry/views/performance/utils';
|
|
|
import {useHasDataTrackAnalytics} from 'sentry/views/performance/utils/analytics/useHasDataTrackAnalytics';
|
|
|
|