Closes #4148
@ -47,10 +47,6 @@ class Link extends Component {
el = 'a';
linkProps.href = to;
linkProps.target = target || '_self';
} else if (to.startsWith(`${window.Sonarr.urlBase}/`)) {
el = RouterLink;
linkProps.to = to;
linkProps.target = target;
} else {
linkProps.to = `${window.Sonarr.urlBase}/${to.replace(/^\//, '')}`;
@ -53,7 +53,7 @@ class PageHeader extends Component {
<div className={styles.logoContainer}>
<Link
className={styles.logoLink}
to={`${window.Sonarr.urlBase}/`}
to={'/'}
>
<img
className={styles.logo}