From 7ac852426e5af2e128e44fb72978fe7d9096d57c Mon Sep 17 00:00:00 2001 From: ajnart Date: Tue, 22 Nov 2022 11:23:01 +0900 Subject: [PATCH] Fix click on logo breaking config changes Just removed the link on the logo --- src/components/layout/Logo.tsx | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/src/components/layout/Logo.tsx b/src/components/layout/Logo.tsx index 530314b57..6acdcb075 100644 --- a/src/components/layout/Logo.tsx +++ b/src/components/layout/Logo.tsx @@ -18,26 +18,18 @@ export function Logo({ style, withoutText }: any) { }} /> {withoutText ? null : ( - - - {config.settings.title || 'Homarr'} - - + {config.settings.title || 'Homarr'} + )} );