12345678910111213141516171819 |
- import {t} from 'sentry/locale';
- export const MODULE_TITLE = t('Screen Rendering');
- export const DATA_TYPE = t('Screen Render');
- export const DATA_TYPE_PLURAL = t('Screen Renders');
- export const CHART_HEIGHT = 160;
- export const MODULE_DESCRIPTION = t(
- 'Screen Rendering identifies slow and frozen interactions, helping you find and fix problems that might cause users to complain, or uninstall.'
- );
- export const MODULE_DOC_LINK = 'https://docs.sentry.io/product/insights/mobile/';
- export const BASE_URL = 'screen-rendering';
- export const SUMMARY_PAGE_BASE_URL = 'details';
- export const SUMMARY_PAGE_TITLE = t('Render Summary');
- export const MODULE_FEATURES = ['insights-addon-modules'];
|