Merge pull request #513 from ajnart/512-clicking-logo-resets-all-settings

Fix click on logo breaking config changes
This commit is contained in:
Thomas Camlong
2022-11-22 17:44:51 +09:00
committed by GitHub

View File

@@ -18,13 +18,6 @@ export function Logo({ style, withoutText }: any) {
}}
/>
{withoutText ? null : (
<NextLink
href="/"
style={{
textDecoration: 'none',
position: 'relative',
}}
>
<Text
sx={style}
weight="bold"
@@ -37,7 +30,6 @@ export function Logo({ style, withoutText }: any) {
>
{config.settings.title || 'Homarr'}
</Text>
</NextLink>
)}
</Group>
);