Remove redundant title attribute from header. Closes #2620

This commit is contained in:
Gabe Kangas 2023-01-24 19:43:17 -08:00
parent d854b7d37a
commit 8bacd776bc
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -44,7 +44,7 @@ export const Header: FC<HeaderComponentProps> = ({
<div id="header-logo" className={styles.logoImage}>
<OwncastLogo variant="contrast" />
</div>
<h1 className={styles.title} id="global-header-text" title={name}>
<h1 className={styles.title} id="global-header-text">
{name}
</h1>
</div>