Skip to content

Commit

Permalink
reduce duplicate title
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaianirh committed Dec 17, 2020
1 parent 5674b1d commit 8111a91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/public/components/events.jsx
Expand Up @@ -302,16 +302,17 @@ export const ErrorLoadingEvents = () => {

export const EventStreamPage = withStartGuide(({ noProjectsAvailable, ...rest }) => {
const { t } = useTranslation();
const title = t('events~Events');
return (
<>
<Helmet>
<title>{t('events~Events')}</title>
<title>{title}</title>
</Helmet>
<EventsList
{...rest}
autoFocus={!noProjectsAvailable}
mock={noProjectsAvailable}
title={t('events~Events')}
title={title}
/>
</>
);
Expand Down

0 comments on commit 8111a91

Please sign in to comment.