diff --git a/components/Header/index.tsx b/components/Header/index.tsx index b94b7d60..6502f89f 100644 --- a/components/Header/index.tsx +++ b/components/Header/index.tsx @@ -172,15 +172,11 @@ const Header = () => { } } else if (['weapons', 'summons', 'characters', 'new', ''].includes(path)) { title = t('new_party') - } else if ( - ['about', 'updates', 'roadmap', 'saved', 'teams'].includes(path) - ) { - title = capitalizeFirstLetter(path) } else { - title = path + title = '' } - return ( + return title !== '' ? (