Skip to content

Commit

Permalink
chore: Rename Screens to Mobile (#60099)
Browse files Browse the repository at this point in the history
  • Loading branch information
shruthilayaj authored Nov 16, 2023
1 parent fe3563c commit 8824524
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion static/app/components/sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ function Sidebar({location, organization}: Props) {
isAlpha={SCREENS_RELEASE_LEVEL === 'alpha'}
isBeta={SCREENS_RELEASE_LEVEL === 'beta'}
isNew={SCREENS_RELEASE_LEVEL === 'new'}
label={t('Screens')}
label={t('Mobile')}
to={`/organizations/${organization.slug}/performance/mobile/screens/`}
id="performance-mobile-screens"
icon={<SubitemDot collapsed />}
Expand Down
4 changes: 2 additions & 2 deletions static/app/views/starfish/modules/mobile/pageload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export default function PageloadModule() {
const organization = useOrganization();

return (
<SentryDocumentTitle title={t('Screens')} orgSlug={organization.slug}>
<SentryDocumentTitle title={t('Mobile')} orgSlug={organization.slug}>
<Layout.Page>
<PageErrorProvider>
<Layout.Header>
<Layout.HeaderContent>
<Layout.Title>{t('Screens')}</Layout.Title>
<Layout.Title>{t('Mobile')}</Layout.Title>
</Layout.HeaderContent>
</Layout.Header>

Expand Down
2 changes: 1 addition & 1 deletion static/app/views/starfish/utils/routeNames.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const ROUTE_NAMES = {
'span-summary': t('Span Summary'),
'web-service': t('Web Service'),
initialization: t('App Initialization'),
pageload: t('Screens'),
pageload: t('Mobile'),
responsiveness: t('Responsiveness'),
};
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function ScreenLoadSpans() {
const crumbs: Crumb[] = [
{
to: screenLoadModule,
label: t('Screens'),
label: t('Mobile'),
preservePageFilters: true,
},
{
Expand Down

0 comments on commit 8824524

Please sign in to comment.